Enum JobState
- Namespace
- Misaki.HighPerformance.Jobs
- Assembly
- Misaki.HighPerformance.Jobs.dll
The state of a job in its lifecycle.
public enum JobState
Fields
Completed = 3The job has completed execution.
Created = 0The job has been created but not yet scheduled for execution.
Invalid = -1The job is in an invalid state, indicating an error or uninitialized state.
Running = 2The job is currently being executed.
Scheduled = 1The job is scheduled and waiting to be executed.