public final class ProcessPhase extends Enum
A request will be set to various process phasies during the processing lifecycle of that request.
Modifier and Type | Field and Description |
---|---|
static ProcessPhase |
Complete
All processing for the request is complete.
|
static ProcessPhase |
ExecuteAsyncReceived
Received notification from the remote executable for an
asynchronous job.
|
static ProcessPhase |
ExecuteAsyncWait
Waiting for notification that remote execution finished for an
asynchronous job.
|
static ProcessPhase |
ExecuteFinalize
Finalize job execution for the request.
|
static ProcessPhase |
ExecuteFinalizeAsync
Finalize job execution for an asynchronous job request.
|
static ProcessPhase |
ExecuteFinalizeComplete
Job execution finalize complete.
|
static ProcessPhase |
ExecuteInitiate
Initiate job execution for the request.
|
static ProcessPhase |
ExecuteInitiateComplete
Job execution initate complete.
|
static ProcessPhase |
ExecutePaused
Job executable indicated execution has paused.
|
static ProcessPhase |
ExecutePausedWaitForSubreq
Job execution has paused and Enterprise Scheduler is waiting
for sub-requests to complete.
|
static ProcessPhase |
Initial
Initial phase.
|
static ProcessPhase |
JobSetExecuteStepsWait
Job set request is waiting for job set steps to complete.
|
static ProcessPhase |
JobSetInitial
Initial phase for a job set request.
|
static ProcessPhase |
PostExecuteComplete
Post execution of the request is complete.
|
static ProcessPhase |
PostExecuteStart
Post execution starting for the request.
|
static ProcessPhase |
PostExecuteTerminalComplete
Post execution tasks specific to the request are complete.
|
static ProcessPhase |
PostExecuteWaitForSubreq
Post execution is delayed until all sub-requests complete.
|
static ProcessPhase |
PostProcessComplete
Completed post process stage of the request execution.
|
static ProcessPhase |
PostProcessDelayed
Request post process is delayed.
|
static ProcessPhase |
PostProcessStart
Begin post process stage of the request execution.
|
static ProcessPhase |
PreProcessComplete
Completed pre process stage of the request execution.
|
static ProcessPhase |
PreProcessDelayed
Request pre process is delayed.
|
static ProcessPhase |
PreProcessStart
Begin pre process stage of the request execution.
|
static ProcessPhase |
ProcessExecuteComplete
Request execution processing has completed.
|
static ProcessPhase |
ProcessSetupReady
Preparing to execute the request.
|
static ProcessPhase |
Undefined
Undefined phase.
|
static ProcessPhase |
Unknown
Unknown phase.
|
Modifier and Type | Method and Description |
---|---|
static ProcessPhase |
fromString(String processPhaseStr)
Converts a stringified process phase into a ProcessPhase object.
|
String |
toString(Locale locale)
Enterprise Manager support to acquire a localized string value.
|
int |
value()
The numeric value associated with this ProcessPhase.
|
static ProcessPhase |
valueOf(int value)
The ProcessPhase associated with the given value.
|
static ProcessPhase |
valueOf(String name) |
static ProcessPhase[] |
values() |
public static final ProcessPhase Unknown
public static final ProcessPhase Undefined
public static final ProcessPhase Initial
public static final ProcessPhase PreProcessStart
public static final ProcessPhase PreProcessDelayed
PreProcessHandler
returned HandlerStatus.DELAY
.public static final ProcessPhase PreProcessComplete
public static final ProcessPhase ExecuteInitiate
public static final ProcessPhase ExecuteInitiateComplete
public static final ProcessPhase ExecuteAsyncWait
public static final ProcessPhase ExecuteFinalize
public static final ProcessPhase ExecuteFinalizeAsync
public static final ProcessPhase ExecuteFinalizeComplete
public static final ProcessPhase ExecutePaused
public static final ProcessPhase PostProcessStart
public static final ProcessPhase PostProcessDelayed
PostProcessHandler
returned HandlerStatus.DELAY
.public static final ProcessPhase PostProcessComplete
public static final ProcessPhase ProcessExecuteComplete
public static final ProcessPhase JobSetInitial
public static final ProcessPhase ProcessSetupReady
READY
state and set up is being done to
transition to RUNNING
state.public static final ProcessPhase ExecutePausedWaitForSubreq
public static final ProcessPhase ExecuteAsyncReceived
public static final ProcessPhase JobSetExecuteStepsWait
public static final ProcessPhase PostExecuteStart
public static final ProcessPhase PostExecuteWaitForSubreq
public static final ProcessPhase PostExecuteTerminalComplete
public static final ProcessPhase PostExecuteComplete
public static final ProcessPhase Complete
public static ProcessPhase[] values()
public static ProcessPhase valueOf(String name)
public int value()
public static ProcessPhase valueOf(int value)
value
- the value to convertpublic static ProcessPhase fromString(String processPhaseStr)
processPhaseStr
- the string to convertprocessPhaseStr
,
or ProcessPhase.Unknown
if the conversion could not be made.