  | TaskState Enumeration | 
 
            Indicates the current state of a task.
            
 
    Namespace: 
   Ookii.Jumbo.Jet
    Assembly:
   Ookii.Jumbo.Jet (in Ookii.Jumbo.Jet.dll) Version: 2.0.0
SyntaxPublic Enumeration TaskState
public enum class TaskState
Members| 
									 
								 | Member name | Value | Description | 
|---|
 | Created | 0 | 
            The task has been loaded by the job server, but has not been assigned to a task server yet.
             | 
 | Scheduled | 1 | 
            The task has been assigned to a task server, but has not been started yet.
             | 
 | Running | 2 | 
            The task server has been told to start executing the task.
             | 
 | Finished | 3 | 
            The task has finished executing successfully.
             | 
 | Error | 4 | 
            The task has encountered an error in its previous attempt.
             | 
 | Aborted | 5 | 
            The task was aborted (usually because the job failed).
             | 
See Also