-
- All Known Implementing Classes:
ApplicationServiceImpl
public interface ApplicationServiceHelper interface whose methods' returnedFutureobjects'Future.get()method either indicates when anApplication's init, start, or stop methods are finished or returns the created application.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Future<Void>init(Application application)Future<Void>start(Application application, Stage targetStage)Future<Void>stop(Application application)
-
-
-
Method Detail
-
init
Future<Void> init(Application application)
- Returns:
- a
FuturewhoseFuture.get()will return when the given application has finished itsApplication.init()method
-
start
Future<Void> start(Application application, Stage targetStage)
- Returns:
- a
FuturewhoseFuture.get()will return when the given application has finished itsApplication.start(Stage)method
-
stop
Future<Void> stop(Application application)
- Returns:
- a
FuturewhoseFuture.get()will return when the given application has finished itsApplication.stop()method
-
-