Package foxtrot

Interface Summary
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 Summary
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 The class that execute time-consuming Tasks and Jobs, but differently from Worker, execute them concurrently and not one after the other, though the invocations to ConcurrentWorker.post(Task) or ConcurrentWorker.post(Job) will finish one after the other.
Job A time-consuming task to be executed in the Worker Thread that does not throw checked exceptions.
Task A time-consuming task to be executed in the Worker Thread that may throw checked exceptions.
Worker The class that execute time-consuming Tasks and Jobs.
 



Copyright © 2011 KnowledgePlaza. All Rights Reserved.