| Class | Package | Description | |
|---|---|---|---|
| AbstractCompositeTask | com.rosettastone.library.taskmanager | This is an abstract class and should not be instantiated directly. | |
| AbstractTaskManager | com.rosettastone.library.taskmanager | This is an abstract class and should not be instantiated directly. | |
| CompositeTask | com.rosettastone.library.taskmanager | Wraps a set of ITasks and executes them in parallel or serial, as specified by a boolean constructor arg. | |
| EventHandlingTask | com.rosettastone.library.taskmanager | Convenience Task that listens to an IEventDispatcher for either a success or failure type event. | |
| FactoryTask | com.rosettastone.library.taskmanager | Decorates a Task returned by the specified factory method. | |
| IDecoratorTask | com.rosettastone.library.taskmanager | Special interface for tasks that decorate other tasks. | |
| IInterruptibleTask | com.rosettastone.library.taskmanager | An interruptible Task can be paused and resumed after being run. | |
| InnocuousTaskDecorator | com.rosettastone.library.taskmanager | Decorates a Task but re-dispatches both error and success events as success. | |
| InterruptibleCompositeTask | com.rosettastone.library.taskmanager | Wraps a set of IInterruptibleTask (or ISynchronousTask) and executes them in parallel or serial, as specified by a boolean constructor arg. | |
| InterruptibleDecoratorTask | com.rosettastone.library.taskmanager | Decorates a non-interruptible Task and adds interruptible-like behavior. | |
| InterruptibleStubTask | com.rosettastone.library.taskmanager | Interruptible stub Task primarily intended for use in the context of automated tests. | |
| InterruptibleTask | com.rosettastone.library.taskmanager | Abstract inerruptible Task. | |
| InterruptibleTaskManager | com.rosettastone.library.taskmanager | Manages execution of a set of IInterruptibleTasks. | |
| ISynchronousTask | com.rosettastone.library.taskmanager | A synchronous Task is one that completes immediately upon being run. | |
| ITask | com.rosettastone.library.taskmanager | A Task represents a job. | |
| ObserverTask | com.rosettastone.library.taskmanager | Observes (but does not execute) a collection of Tasks. | |
| PlaySoundTask | com.rosettastone.library.taskmanager | Task that plays a Sound and completes when the sound has finished playing. | |
| RetryOnFailureDecoratorTask | com.rosettastone.library.taskmanager | Special Task decorator for Tasks that should be retried on failure. | |
| SleepTask | com.rosettastone.library.taskmanager | Sleeps until told to complete. | |
| StubTask | com.rosettastone.library.taskmanager | Empty Task useful primarily for unit testing. | |
| SynchronousTask | com.rosettastone.library.taskmanager | Synchronous Task for convenience sub-class purposes. | |
| SynchronousTaskWithClosure | com.rosettastone.library.taskmanager | ||
| Task | com.rosettastone.library.taskmanager | This class is meant to encapsulate a single, self-contained job. | |
| TaskEvent | com.rosettastone.library.taskmanager.events | Dispatched by a Task to indicated a change in state. | |
| TaskManager | com.rosettastone.library.taskmanager | Manages execution of a set of ITasks. | |
| TaskManagerComponentInfo | com.rosettastone.library.taskmanager | Used for retrieving information about the TaskManager component. | |
| TaskManagerEvent | com.rosettastone.library.taskmanager.events | Dispatched by TaskManager to indicate a change in state. | |
| TaskWithClosure | com.rosettastone.library.taskmanager | Task that invokes a specified function upon execution. | |
| TaskWithTimeout | com.rosettastone.library.taskmanager | Decorates a Task and enforces a max-execution time limit. | |
| URLRequestTask | com.rosettastone.library.taskmanager | Task that loads a URLRequest and exposes the URLLoader's "urlLoaderData" upon success. | |
| WaitForUIInitialization | com.rosettastone.library.taskmanager | Convenience task for waiting until a specified UIComponent has initialized. | |
| WaitTask | com.rosettastone.library.taskmanager | Task that delays for a specified time before completion. |