Indicates the status of a job.
| Value | Member | Description |
|---|---|---|
| 0 | NotFound | The job was not found in the Job Processor database. |
| 1 | New | The job is in queue, and ready to be processed. A job is marked as new when it is added, or when ResetJob is called. |
| 2 | Queried | The job has been removed from the queue, and is being prepared for processing. |
| 3 | Started | The job is currently being processing. |
| 4 | Completed | The job has been successfully processed. A job is marked as completed when SetCompletedStatus is called. |
| 5 | Failed | The job encountered errors during processing. A job is marked as failed when SetFailureStatus is called. |
| 6 | Aborted | The job was aborted during processing. A job is marked as aborted when SetAbortedStatus is called. |