JobQueueEvent
public enum JobQueueEvent
Defines the key events which occur to a JobQueue
‘s Job
- added: The jobs were added to the JobQueue
- cancelled: The jobs were cancelled in the JobQueue
- removed: The jobs were removed from the JobQueue
- processed: The jobs were successfully processed
- failedToProcess: The jobs failed to successfully process
-
The jobs were added to the JobQueue
Declaration
Swift
case added,
-
The jobs were cancelled in the JobQueue
Declaration
Swift
cancelled,
-
The jobs were removed from the JobQueue
Declaration
Swift
removed,
-
The jobs were successfully processed
Declaration
Swift
processed,
-
The jobs failed to successfully process
Declaration
Swift
failedToProcess