Package | Description |
---|---|
oracle.as.scheduler |
Enterprise Scheduler API interfaces and classes, including
RuntimeService and MetadataService.
|
oracle.as.scheduler.async |
Classes for use by asynchronous jobs.
|
Modifier and Type | Method and Description |
---|---|
UpdateAction |
Updatable.onEvent(RequestExecutionContext context,
RequestParameters parameters,
AsyncStatus resultCode,
String messagePayload)
Invoked by Enterprise Scheduler when a remote job for an asynchronous
request notifies Enterprise Scheduler of a status.
|
void |
AsyncRequestBeanInterface.setRequestStatus(RequestExecutionContext context,
AsyncStatus status,
String statusMessage)
Set the status of an ESS asynchronous java job.
|
Modifier and Type | Field and Description |
---|---|
static AsyncStatus |
AsyncStatus.BIZ_ERROR
The asynchronous job encountered a business error.
|
static AsyncStatus |
AsyncStatus.CANCEL
The asynchronous job has canceled its execution.
|
static AsyncStatus |
AsyncStatus.ERROR
The asynchronous job encountered a system error.
|
static AsyncStatus |
AsyncStatus.ERROR_MANUAL_RECOVERY
The asynchronous job requests manual recovery to complete the request.
|
static AsyncStatus |
AsyncStatus.PAUSE
The asynchronous job has paused for the execution of sub-requests.
|
static AsyncStatus |
AsyncStatus.SUCCESS
The asynchronous job ran successfully.
|
static AsyncStatus |
AsyncStatus.UPDATE
The asynchronous job is updated.
|
static AsyncStatus |
AsyncStatus.WARNING
The asynchronous job is issuing a WARNING.
|
Modifier and Type | Method and Description |
---|---|
AsyncStatus |
UpdateAction.getAsyncStatus()
Gets the AsyncStatus associated with this object.
|
static AsyncStatus |
AsyncStatus.valueOf(String name) |
static AsyncStatus[] |
AsyncStatus.values() |
Modifier and Type | Method and Description |
---|---|
void |
AsyncHelper.setRequestStatus(AsyncStatus status,
String statusMessage) |
void |
RemoteAsyncHelper.setRequestStatus(AsyncStatus status,
String statusMessage) |
Constructor and Description |
---|
UpdateAction(AsyncStatus status,
String message)
Constructor.
|
UpdateAction(AsyncStatus status,
String message,
Throwable throwable)
Constructor.
|