| A B C D E F G H I J K L M N O P Q R S T U V W X Y Z |
| id — Property, class com.rosettastone.library.taskmanager.Task |
| |
| ID — Static Property, class com.rosettastone.library.taskmanager.Task |
| |
| IDecoratorTask — Interface, package com.rosettastone.library.taskmanager |
|
Special interface for tasks that decorate other tasks. |
| IInterruptibleTask — Interface, package com.rosettastone.library.taskmanager |
|
An interruptible Task can be paused and resumed after being run. |
| individualTaskComplete(task:com.rosettastone.library.taskmanager:ITask) — method, class com.rosettastone.library.taskmanager.AbstractCompositeTask |
|
Override this method to be notified when individual Tasks have successfully completed. |
| individualTaskStarted(task:com.rosettastone.library.taskmanager:ITask) — method, class com.rosettastone.library.taskmanager.AbstractCompositeTask |
|
Override this method to be notified when individual Tasks are started. |
| InnocuousTaskDecorator — class, package com.rosettastone.library.taskmanager |
|
Decorates a Task but re-dispatches both error and success events as success. |
| InnocuousTaskDecorator(decorated:com.rosettastone.library.taskmanager:ITask, taskIdentifier:String) — Constructor, class com.rosettastone.library.taskmanager.InnocuousTaskDecorator |
| |
| interrupt() — method, class com.rosettastone.library.taskmanager.AbstractCompositeTask |
|
Interruptible tasks should override interrupt() and get interruptible() if they are interruptible. |
| interrupt() — method, class com.rosettastone.library.taskmanager.AbstractTaskManager |
|
Interruptible tasks should override interrupt() and get interruptible() if they are interruptible. |
| interrupt() — method, interface com.rosettastone.library.taskmanager.IInterruptibleTask |
|
Interrupt the current Task. |
| interrupt() — method, class com.rosettastone.library.taskmanager.InnocuousTaskDecorator |
|
Interrupt the current Task. |
| interrupt() — method, class com.rosettastone.library.taskmanager.InterruptibleTask |
|
Interrupt the current Task. |
| interrupt() — method, class com.rosettastone.library.taskmanager.Task |
|
Interruptible tasks should override interrupt() and get interruptible() if they are interruptible. |
| _interrupted — Property, class com.rosettastone.library.taskmanager.Task |
| |
| INTERRUPTED — Constant Static Property, class com.rosettastone.library.taskmanager.events.TaskEvent |
| |
| INTERRUPTED — Constant Static Property, class com.rosettastone.library.taskmanager.events.TaskManagerEvent |
| |
| _interruptedPosition — Property, class com.rosettastone.library.taskmanager.PlaySoundTask |
| |
| _interruptedTask — Property, class com.rosettastone.library.taskmanager.AbstractCompositeTask |
| |
| interruptForTask(interruptingTask:com.rosettastone.library.taskmanager:ITask) — method, interface com.rosettastone.library.taskmanager.IInterruptibleTask |
|
Interrupts the current Task to wait on the Task specified. |
| interruptForTask(interruptingTask:com.rosettastone.library.taskmanager:ITask) — method, class com.rosettastone.library.taskmanager.Task |
|
Interrupts the current Task to wait on the Task specified. |
| interruptible — Property, class com.rosettastone.library.taskmanager.AbstractCompositeTask |
|
The current Task can be interrupted. |
| interruptible — Property, class com.rosettastone.library.taskmanager.AbstractTaskManager |
|
The current Task can be interrupted. |
| interruptible — Property, class com.rosettastone.library.taskmanager.InterruptibleTask |
|
The current Task can be interrupted. |
| interruptible — Property, class com.rosettastone.library.taskmanager.Task |
|
The current Task can be interrupted. |
| InterruptibleCompositeTask — class, package 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. |
| InterruptibleCompositeTask(tasksOrFunctions:Array, executeTaskInParallel:Boolean, taskIdentifier:String) — Constructor, class com.rosettastone.library.taskmanager.InterruptibleCompositeTask |
|
Constructor
|
| InterruptibleDecoratorTask — class, package com.rosettastone.library.taskmanager |
|
Decorates a non-interruptible Task and adds interruptible-like behavior. |
| InterruptibleDecoratorTask(decoratedTask:com.rosettastone.library.taskmanager:ITask, taskIdentifier:String) — Constructor, class com.rosettastone.library.taskmanager.InterruptibleDecoratorTask |
| |
| InterruptibleStubTask — class, package com.rosettastone.library.taskmanager |
|
Interruptible stub Task primarily intended for use in the context of automated tests. |
| InterruptibleStubTask(autoCompleteUponRun:Boolean, taskIdentifier:String) — Constructor, class com.rosettastone.library.taskmanager.InterruptibleStubTask |
| |
| InterruptibleTask — class, package com.rosettastone.library.taskmanager |
|
Abstract inerruptible Task. |
| InterruptibleTask(taskIdentifier:String) — Constructor, class com.rosettastone.library.taskmanager.InterruptibleTask |
|
Constructor. |
| InterruptibleTaskManager — class, package com.rosettastone.library.taskmanager |
|
Manages execution of a set of IInterruptibleTasks. |
| InterruptibleTaskManager() — Constructor, class com.rosettastone.library.taskmanager.InterruptibleTaskManager |
|
Constructor. |
| interruptingTask — Property, interface com.rosettastone.library.taskmanager.IInterruptibleTask |
|
The Task currently interrupting the this Task's execution (or NULL if no such Task exists). |
| _interruptingTask — Property, class com.rosettastone.library.taskmanager.Task |
| |
| interruptingTask — Property, class com.rosettastone.library.taskmanager.Task |
|
The Task currently interrupting the composite Task's execution (or NULL if no such Task exists). |
| _interruptionHandlers — Property, class com.rosettastone.library.taskmanager.Task |
| |
| isComplete — Property, interface com.rosettastone.library.taskmanager.ITask |
|
The current task has successfully completed execution. |
| isComplete — Property, class com.rosettastone.library.taskmanager.InnocuousTaskDecorator |
|
The current task has successfully completed execution. |
| isComplete — Property, class com.rosettastone.library.taskmanager.Task |
|
The current task has successfully completed execution. |
| isErrored — Property, interface com.rosettastone.library.taskmanager.ITask |
|
The current task failed. |
| isErrored — Property, class com.rosettastone.library.taskmanager.Task |
|
The current task failed. |
| isInterrupted — Property, interface com.rosettastone.library.taskmanager.IInterruptibleTask |
|
The task has been interrupted and has not yet resumed. |
| isInterrupted — Property, class com.rosettastone.library.taskmanager.Task |
| |
| isRunning — Property, interface com.rosettastone.library.taskmanager.ITask |
|
The task is currently running. |
| isRunning — Property, class com.rosettastone.library.taskmanager.Task |
|
The task is currently running. |
| ISynchronousTask — Interface, package com.rosettastone.library.taskmanager |
|
A synchronous Task is one that completes immediately upon being run. |
| ITask — Interface, package com.rosettastone.library.taskmanager |
|
A Task represents a job. |
|
| A B C D E F G H I J K L M N O P Q R S T U V W X Y Z |