public enum JobStatus : System.Enum
A read-only property showing the current status of a schedule. Used in REST — SchedulesV2 and by the ReportScheduler Class
public enum JobStatus : System.Enum
Member | Value | Description |
---|---|---|
Abended | 5 | The last run failed due to an error. The schedule will not run again. |
Completed | 2 | The schedule has completed its final event, and will not run again. It will be removed from the list when the scheduler is flushed. |
Deleted | 4 | The schedule has been deleted, and will be removed from the list when the cache is flushed. |
Immediate | 9 | As soon as resources are available, the schedule will be run. |
Ready | 0 | The schedule will run at its next scheduled run time. |
Removed | 8 | Schedule should be removed if it hasn't already. |
Running | 1 | The schedule is currently running and the reports are executing. |
Suspended | 3 | The schedule has been suspended and will not be run again. |
Timedout | 10 | The job has timed out (see Application Timeouts for more information). |
Transmitting | 7 | Schedule is finished and waiting for data to be transmitted to client for synchronous execution. |
UserAbort | 6 | Schedule is running, but user has requested to delete it. |
Added in v2019.2.0.
System.Object
System.ValueType
System.Enum
WebReports.Api.Scheduler.JobStatus