19.54. JobState
State of a job.
enum JobState {
// The job is unknown to the service
// or in an unknown state.
JOB_STATE_UNKNOWN = 0;
// The job has been accepted and queued by the service,
// but has not yet started running.
JOB_STATE_PENDING = 1;
// The job is currently running.
JOB_STATE_RUNNING = 2;
// The job has stopped running.
JOB_STATE_STOPPED = 3;
}
See also JobStatus for additional information.