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