Interface AsyncGUIJob


public interface AsyncGUIJob
Service provider interface (SPI) for executing of time consuming task which results are visible in UI. Typical usage is post-initialization of UI components or various long lasting operations like network accessing invoked directly or indirectly by user from UI. Note that it's often desirable to provide cancel support, at least for longer lasting jobs. See Cancellable support. Keep in mind that methods construct() and Cancellable.cancel() can be called concurrently and require proper synchronization as such.
Since:
3.36
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Worker method, can be called in any thread but event dispatch thread.
    void
    Method to update UI using given data constructed in construct() method.
  • Method Details

    • construct

      void construct()
      Worker method, can be called in any thread but event dispatch thread. Implement your time consuming work here. Always called and completed before finished() method.
    • finished

      void finished()
      Method to update UI using given data constructed in construct() method. Always called in event dispatch thread, after construct() method completed its execution.