Interface ApplicationService

All Known Implementing Classes:
ApplicationServiceImpl

public interface ApplicationService
Helper interface whose methods' returned Future objects' Future.get() method either indicates when an Application's init, start, or stop methods are finished or returns the created application.
  • Method Summary

    Modifier and Type
    Method
    Description
    init(javafx.application.Application application)
     
    start(javafx.application.Application application, javafx.stage.Stage targetStage)
     
    stop(javafx.application.Application application)
     
  • Method Details

    • init

      Future<Void> init(javafx.application.Application application)
      Returns:
      a Future whose Future.get() will return when the given application has finished its Application.init() method
    • start

      Future<Void> start(javafx.application.Application application, javafx.stage.Stage targetStage)
      Returns:
      a Future whose Future.get() will return when the given application has finished its Application.start(Stage) method
    • stop

      Future<Void> stop(javafx.application.Application application)
      Returns:
      a Future whose Future.get() will return when the given application has finished its Application.stop() method