RequestProcessor 
 executor service. For task tracking purposes, use the 
 Progress API.
 See usage examples to start working 
 with the new APIs.@Deprecated public enum TaskState extends java.lang.Enum<TaskState>
| Enum Constant and Description | 
|---|
ABORTED_INCOMPLETE
Deprecated.  
The Task terminated itself and is thus possibly incomplete. 
 | 
ABORTED_ON_EXCEPTION
Deprecated.  
The Task was aborted by the Task Manager upon encountering an
 unhandled exception that propagated to the TaskManager. 
 | 
CANCEL_REQUESTED
Deprecated.  
A cancellation has been requested for this task but the task has
 not acknowledged this request nor terminated itself. 
 | 
CANCELLED
Deprecated.  
The task has terminated itself on a cancel request. 
 | 
CANCELLING
Deprecated.  
The Task has acknowledged that it will be terminating itself. 
 | 
COMPLETED
Deprecated.  
The task has completed normally. 
 | 
CREATED
Deprecated.  
The initial state when a Task is constructed. 
 | 
INTERRUPTED
Deprecated.  
The Thread was interrupted 
 | 
PAUSE_REQUESTED
Deprecated.  
A Pause was requested but has not been acknowledged by the Task 
 | 
PAUSED
Deprecated.  
The task has been Paused on request. 
 | 
PAUSING
Deprecated.  
The task has acknowledged the Pause request but has not paused itself
 yet 
 | 
RESERVED
Deprecated.  
reserved for internal use. 
 | 
RUNNING
Deprecated.  
The task has been started. 
 | 
SCHEDULED
Deprecated.  
The scheduled state means that the task manager has scheduled this
 task and any new tasks with resource locking requests will have
 to compete with this task. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static TaskState | 
valueOf(java.lang.String name)
Deprecated.  
Returns the enum constant of this type with the specified name. 
 | 
static TaskState[] | 
values()
Deprecated.  
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final TaskState CREATED
public static final TaskState SCHEDULED
public static final TaskState RUNNING
public static final TaskState COMPLETED
public static final TaskState CANCEL_REQUESTED
public static final TaskState CANCELLING
public static final TaskState CANCELLED
public static final TaskState ABORTED_ON_EXCEPTION
public static final TaskState ABORTED_INCOMPLETE
public static final TaskState INTERRUPTED
public static final TaskState PAUSE_REQUESTED
public static final TaskState PAUSING
public static final TaskState PAUSED
public static final TaskState RESERVED
public static TaskState[] values()
for (TaskState c : TaskState.values()) System.out.println(c);
public static TaskState valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is null