-
Notifications
You must be signed in to change notification settings - Fork 6
Code examples
Markus Enax edited this page Oct 1, 2016
·
9 revisions
import de.thjom.java.systemd.Manager;
import de.thjom.java.systemd.Systemd;
try (Systemd systemd = Systemd.get()) {
Manager manager = systemd.getManager();
String arch = manager.getArchitecture();
}
catch (final DBusException e) {
e.printStackTrace();
}import de.thjom.java.systemd.Service;
import de.thjom.java.systemd.Systemd;
try (Systemd systemd = Systemd.get()) {
Service avahi = systemd.getManager().getService("avahi-daemon");
long pid = avahi.getMainPID();
}
catch (final DBusException e) {
e.printStackTrace();
}