All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jpower.core.Service Maven / Gradle / Ivy

There is a newer version: 0.0.5
Show newest version
package jpower.core;

public interface Service
{

    public boolean start();

    public boolean stop();

    default boolean restart()
    {
        return stop() && start();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy