Uses of Class
foxtrot.Task

Packages that use Task
foxtrot   
foxtrot.pumps   
foxtrot.utils   
foxtrot.workers   
 

Uses of Task in foxtrot
 

Subclasses of Task in foxtrot
 class AsyncTask
          A time-consuming task to be executed asynchronously by AsyncWorker.
 class Job
          A time-consuming task to be executed in the Worker Thread that does not throw checked exceptions.
 

Methods in foxtrot with parameters of type Task
static Object Worker.post(Task task)
          Enqueues the given Task to be executed by the WorkerThread, while dequeueing AWT events.
static Object ConcurrentWorker.post(Task task)
           
 void WorkerThread.postTask(Task task)
          Posts a Task to be run by this WorkerThread in a thread that is not the Event Dispatch Thread.
 void EventPump.pumpEvents(Task task)
          Pumps AWT events from the standard AWT Event Queue and dispatches the events until the given task is completed; must be called from the Event Dispatch Thread.
 void WorkerThread.runTask(Task task)
          Runs the given Task.
 void AbstractWorkerThread.runTask(Task task)
           
 

Uses of Task in foxtrot.pumps
 

Methods in foxtrot.pumps with parameters of type Task
 void QueueEventPump.pumpEvents(Task task)
           
 void ConditionalEventPump.pumpEvents(Task task)
           
 

Uses of Task in foxtrot.utils
 

Subclasses of Task in foxtrot.utils
 class FlushJob
          This job flushes all pending AWT events that are waiting in the EventQueue.
 

Uses of Task in foxtrot.workers
 

Methods in foxtrot.workers that return Task
protected  Task SingleWorkerThread.takeTask()
          Removes and returns the first available Task from the internal queue.
 

Methods in foxtrot.workers with parameters of type Task
 void SingleWorkerThread.postTask(Task t)
          Posts the given Task onto an internal queue.
protected  void SingleWorkerThread.run(Task task)
          Executes the given Task.
protected  void MultiWorkerThread.run(Task task)
           
 



Copyright © 2011 KnowledgePlaza. All Rights Reserved.