com.ibm.websphere.longrun
Class JobStatusConstants
- java.lang.Object
com.ibm.websphere.longrun.JobStatusConstants
- public class JobStatusConstants
- extends java.lang.Object
Field Summary
Modifier and Type | Field and Description |
---|---|
|
CANCEL_PENDING
A cancel request was received by the job scheduler and the grid endpoint is in the process of
canceling the job.
|
|
CANCELLED
The job has been canceled successfully.
|
|
DISPATCHED
A worker thread has been dispatched to execute the job
|
|
ENDED
Job has ended successfully.
|
|
EXECUTING
Job is currently executing on a grid endpoint.
|
|
EXECUTION_FAILED
Error occurred while running a compute-intensive job or setting up a j2ee job.
|
|
IN_SETUP
Job is in the process of being setup
|
|
NOT_STARTED
NO step status
|
|
PENDING_SUBMIT
A delayed job is waiting to be submitted based on the start time for the job
|
|
RESTARTABLE
The job is restartable.
|
|
RESUME_PENDING
A resume request was received by the job scheduler and the
grid endpoint is in the process of resuming the job.
|
|
statusText
Descriptive text for the job status codes.
|
|
STOP_PENDING
A stop request was received by the job scheduler and the grid endpoint is in
the process of stopping the job.
|
|
STOPPED
Job is stopped.
|
|
SUBMITTED
Job has been submitted to the job scheduler but has not yet been started on a grid endpoint
|
|
SUSPEND_PENDING
A suspend request was received by the job scheduler and the
grid endpoint is in the process of suspending the job.
|
|
SUSPENDED
Job is currently suspended on the grid endpoint
|
|
UNKNOWN
UNKNOWN status
|
Constructor Summary
Constructor and Description |
---|
JobStatusConstants()
|
Method Summary
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail
SUBMITTED
- public static final int SUBMITTED
Job has been submitted to the job scheduler but has not yet been started on a grid endpoint
See Also:
CANCEL_PENDING
- public static final int CANCEL_PENDING
A cancel request was received by the job scheduler and the grid endpoint is in the process of
canceling the job.
See Also:
SUSPEND_PENDING
- public static final int SUSPEND_PENDING
A suspend request was received by the job scheduler and the
grid endpoint is in the process of suspending the job. Applies to batch jobs only.
See Also:
RESUME_PENDING
- public static final int RESUME_PENDING
A resume request was received by the job scheduler and the
grid endpoint is in the process of resuming the job. Applies to batch jobs only.
See Also:
EXECUTING
- public static final int EXECUTING
Job is currently executing on a grid endpoint.
See Also:
SUSPENDED
- public static final int SUSPENDED
Job is currently suspended on the grid endpoint
See Also:
CANCELLED
- public static final int CANCELLED
The job has been canceled successfully. Applies to compute-intensive jobs only.
See Also:
ENDED
- public static final int ENDED
Job has ended successfully.
See Also:
RESTARTABLE
- public static final int RESTARTABLE
The job is restartable. Batch jobs that fail or are canceled, go into the
RESTARTABLE state. Applies to batch jobs only.
See Also:
EXECUTION_FAILED
- public static final int EXECUTION_FAILED
Error occurred while running a compute-intensive job or setting up a j2ee job.
See Also:
PENDING_SUBMIT
- public static final int PENDING_SUBMIT
A delayed job is waiting to be submitted based on the start time for the job
See Also:
STOP_PENDING
- public static final int STOP_PENDING
A stop request was received by the job scheduler and the grid endpoint is in
the process of stopping the job.
See Also:
STOPPED
- public static final int STOPPED
Job is stopped. Applies to batch jobs only.
See Also:
DISPATCHED
- public static final int DISPATCHED
A worker thread has been dispatched to execute the job
See Also:
IN_SETUP
- public static final int IN_SETUP
Job is in the process of being setup
See Also:
NOT_STARTED
- public static final int NOT_STARTED
NO step status
See Also:
UNKNOWN
- public static final int UNKNOWN
UNKNOWN status
See Also:
statusText
- public static final java.lang.String[] statusText
Descriptive text for the job status codes.
Constructor Detail
JobStatusConstants
- public JobStatusConstants()