jpower.core.Service Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of JPower Show documentation
Show all versions of JPower Show documentation
Powerful Library for the JVM
package jpower.core;
public interface Service
{
public boolean start();
public boolean stop();
default boolean restart()
{
return stop() && start();
}
}