JobStates Enumeration
- Last UpdatedNov 06, 2025
- 1 minute read
The JobStates enumeration values specify the job states.
'Declaration
Public Enum JobStates
Inherits System.Enum
public enum JobStates : System.Enum
| Member | Description |
|---|---|
| CANCELLED | A job that no longer needs to be run. |
| COMPLETE | A job that has finished. |
| NEW | A job that is scheduled but not yet ready to run. |
| NoJob | This is not a job state, but is used as a value to set a current job state property to JobStates if no job is running. |
| ONHOLD | A job that is no longer ready to run. |
| READY | A job that is ready to run. |
| RUNNING | A job that is currently running on an entity. |
| SUSPENDED | A job that has not run to completion but is no longer running on an entity. |
System.Object
System.ValueType
System.Enum
FactMES.Client.Common.JobStates