Enum ServerTaskStatus
The current status of a IServerTask
Namespace: LemonEdge.API.Entities
Assembly: API.dll
Syntax
public enum ServerTaskStatus : short
Fields
Name | Description |
---|---|
Cancelled | The task was running, but was cancelled by the user and was never completed. |
Cancelling | Indicates a user has cancelled this task. The task is still being processed by the task service and is in the process of being cancelled. |
Completed | Indicates this task has been processed and completed successfully. |
Failed | The task failed at some point during processing and never completed successfully. The Status view of the task should show where it failed and why. |
NotRunning | Indicates this task is currently not running, but could be processed by a task server in the future if it is enabled and has no next run date, or one that has passed. |
Running | Indicates this task is currently still being processed by a task service, opening it will show the progress. |