Package oracle.as.scheduler
Enum Class ProcessPhase
- All Implemented Interfaces:
Serializable
,Comparable<ProcessPhase>
,java.lang.constant.Constable
Enum of request process phases.
A request will be set to various process phasies during the processing lifecycle of that request.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAll processing for the request is complete.Received notification from the remote executable for an asynchronous job.Waiting for notification that remote execution finished for an asynchronous job.Finalize job execution for the request.Finalize job execution for an asynchronous job request.Job execution finalize complete.Initiate job execution for the request.Job execution initate complete.Job executable indicated execution has paused.Job execution has paused and Enterprise Scheduler is waiting for sub-requests to complete.Initial phase.Job set request is waiting for job set steps to complete.Initial phase for a job set request.Post execution of the request is complete.Post execution starting for the request.Post execution tasks specific to the request are complete.Post execution is delayed until all sub-requests complete.Completed post process stage of the request execution.Request post process is delayed.Begin post process stage of the request execution.Completed pre process stage of the request execution.Request pre process is delayed.Begin pre process stage of the request execution.Request execution processing has completed.Preparing to execute the request.Undefined phase.Unknown phase. -
Method Summary
Modifier and TypeMethodDescriptionstatic ProcessPhase
fromString
(String processPhaseStr) Converts a stringified process phase into a ProcessPhase object.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
Returns the enum constant of this class with the specified name.static ProcessPhase[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
Unknown
Unknown phase. -
Undefined
Undefined phase. -
Initial
Initial phase. A request typically remains in this phase once it is created and until it is picked up by the request processor. -
PreProcessStart
Begin pre process stage of the request execution. -
PreProcessDelayed
Request pre process is delayed. ThePreProcessHandler
returnedHandlerStatus.DELAY
. -
PreProcessComplete
Completed pre process stage of the request execution. -
ExecuteInitiate
Initiate job execution for the request. -
ExecuteInitiateComplete
Job execution initate complete. -
ExecuteAsyncWait
Waiting for notification that remote execution finished for an asynchronous job. -
ExecuteFinalize
Finalize job execution for the request. -
ExecuteFinalizeAsync
Finalize job execution for an asynchronous job request. Enterprise Scheduler processes the notification from the remote executable during this phase. -
ExecuteFinalizeComplete
Job execution finalize complete. -
ExecutePaused
Job executable indicated execution has paused. -
PostProcessStart
Begin post process stage of the request execution. -
PostProcessDelayed
Request post process is delayed. ThePostProcessHandler
returnedHandlerStatus.DELAY
. -
PostProcessComplete
Completed post process stage of the request execution. -
ProcessExecuteComplete
Request execution processing has completed. The pre process, job executable, and post process stages have completed. -
JobSetInitial
Initial phase for a job set request. -
ProcessSetupReady
Preparing to execute the request. The request is inREADY
state and set up is being done to transition toRUNNING
state. -
ExecutePausedWaitForSubreq
Job execution has paused and Enterprise Scheduler is waiting for sub-requests to complete. -
ExecuteAsyncReceived
Received notification from the remote executable for an asynchronous job. -
JobSetExecuteStepsWait
Job set request is waiting for job set steps to complete. -
PostExecuteStart
Post execution starting for the request. The pre process, job executable, and post process stages have completed. Various clean up tasks pertaining to the request are done during this phase. -
PostExecuteWaitForSubreq
Post execution is delayed until all sub-requests complete. -
PostExecuteTerminalComplete
Post execution tasks specific to the request are complete. Additional tasks pertaining to a parent or sibling requests may still be needed. -
PostExecuteComplete
Post execution of the request is complete. The terminal state event is typically delivered to the request EventListener during this phase. -
Complete
All processing for the request is complete. The request is eligible for delete and purge.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
value
public int value()The numeric value associated with this ProcessPhase.- Returns:
- value for this process phase.
-
valueOf
The ProcessPhase associated with the given value.- Parameters:
value
- the value to convert- Returns:
- associated phase.
-
fromString
Converts a stringified process phase into a ProcessPhase object.- Parameters:
processPhaseStr
- the string to convert- Returns:
- the process phase derived from
processPhaseStr
, orProcessPhase.Unknown
if the conversion could not be made.
-
toString
Enterprise Manager support to acquire a localized string value.- Parameters:
locale
- the desired locale.- Returns:
- the localized string
-