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 TypeMethodDescriptionvoidWorker method, can be called in any thread but event dispatch thread.voidfinished()Method to update UI using given data constructed inconstruct()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 beforefinished()method. -
finished
void finished()Method to update UI using given data constructed inconstruct()method. Always called in event dispatch thread, afterconstruct()method completed its execution.
-