Enum JobStatus
Compute job status.
public enum JobStatus
Fields
Canceled = 5The job was successfully cancelled.
Canceling = 4The job has received the cancel command, but is still running.
Completed = 3The job was executed successfully and the execution result was returned.
Executing = 1The job is being executed.
Failed = 2The job was unexpectedly terminated during execution.
Queued = 0The job is submitted and waiting for an execution start.