Interface Startable
-
public interface Startable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default booleanisRestartable()default booleanisStartable()default booleanisStoppable()voidrestart()voidstart()Stringstatus()voidstop()
-
-
-
Method Detail
-
start
void start()
-
stop
void stop()
-
restart
void restart()
-
isStartable
default boolean isStartable()
-
isStoppable
default boolean isStoppable()
-
isRestartable
default boolean isRestartable()
-
status
String status()
-
-