RequestProcessor
executor service. For task tracking purposes, use the
Progress API.
See usage examples to start working
with the new APIs.@Deprecated public enum TaskExitCode extends java.lang.Enum<TaskExitCode>
Enum Constant and Description |
---|
ABORTED
Deprecated.
Aborted by client, abnormal termination.
|
CANCELLED
Deprecated.
Cancelled upon request.
|
COMPLETED
Deprecated.
Normal completion
|
Modifier and Type | Method and Description |
---|---|
static TaskExitCode |
valueOf(java.lang.String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static TaskExitCode[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TaskExitCode CANCELLED
public static final TaskExitCode COMPLETED
public static final TaskExitCode ABORTED
public static TaskExitCode[] values()
for (TaskExitCode c : TaskExitCode.values()) System.out.println(c);
public static TaskExitCode 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