| Interface | Description |
|---|---|
| EventPump |
Synchronous Foxtrot workers use an implementation of this interface
to pump AWT events from the standard AWT Event Queue while executing
Tasks. |
| WorkerThread |
Implementations of this interface run
Tasks in a thread that is not the Event Dispatch Thread. |
| Class | Description |
|---|---|
| AbstractSyncWorker |
Base class for Foxtrot workers that have synchronous behavior.
|
| AbstractWorker |
Base class for all Foxtrot workers, both synchronous and asynchronous.
|
| AbstractWorkerThread |
Partial implementation of the WorkerThread interface.
|
| AsyncTask |
A time-consuming task to be executed asynchronously by
AsyncWorker. |
| AsyncWorker |
The class that executes
asynchronous tasks. |
| ConcurrentWorker | |
| Job |
A time-consuming task to be executed in the Worker Thread that does not throw checked exceptions.
|
| JREVersion |
Helper class that returns which is the current JRE version
|
| Task |
A time-consuming task to be executed in the Worker Thread that may throw checked exceptions.
|
| Worker |