Package | Description |
---|---|
oracle.as.scheduler |
Enterprise Scheduler API interfaces and classes, including
RuntimeService and MetadataService.
|
Modifier and Type | Field and Description |
---|---|
static State |
State.BLOCKED
Request execution is blocked by one or more incompatible requests.
|
static State |
State.CANCELLED
The request was cancelled.
|
static State |
State.CANCELLING
The request has been cancelled and is awaiting acknowledgement.
|
static State |
State.COMPLETED
Job executable has completed and request post-processing has commenced.
|
static State |
State.ERROR
Request processing resulted in error.
|
static State |
State.ERROR_AUTO_RETRY
The request ran, resulted in an error, and is eligible for automatic
retry.
|
static State |
State.ERROR_MANUAL_RECOVERY
The request requires manual intervention in order to be retried or
go to a terminal state.
|
static State |
State.EXPIRED
The request expired before it could be processed.
|
static State |
State.FINISHED
The request, and all child requests, are finished.
|
static State |
State.HOLD
Request has been explicitly held.
|
static State |
State.PAUSED
The request paused for sub-request completion.
|
static State |
State.PENDING_VALIDATION
The request has been submitted but not yet validated.
|
static State |
State.READY
Request has been dispatched and is awaiting processing.
|
static State |
State.RUNNING
Request is being processed.
|
static State |
State.SCHEDULE_ENDED
The schedule for the request has ended, or a request expiration time
specified at request submission has been reached.
|
static State |
State.SUCCEEDED
The request ran and was successful.
|
static State |
State.UNKNOWN
Unknown or invalid state.
|
static State |
State.VALIDATION_FAILED
The request was submitted but failed validation.
|
static State |
State.WAIT
Request is awaiting dispatch.
|
static State |
State.WARNING
The request ran and resulted in a warning.
|
Modifier and Type | Method and Description |
---|---|
static State |
State.fromString(String stateStr)
Converts a stringified state into a State object.
|
State |
RequestExecutionContext.getExecStageState()
Gets the state of the job execution.
|
State |
RequestDetail.getExecutableState()
The state of the request when the executable stage completed.
|
State |
RequestDetail.getPreviousState()
Gets the previous State for this request.
|
State |
RuntimeService.getRequestState(RuntimeServiceHandle handle,
long requestId)
Retrieves the current state of the specified request.
|
State |
FailedExecutionResult.getState()
The state for this failed execution attempt.
|
State |
RequestDetail.getState()
Gets the state for this request.
|
static State |
State.getState(int value)
The State associated with the given numeric value.
|
static State |
State.valueOf(String name) |
static State[] |
State.values() |