Enum WorkerState
Enumerates the different states in which a worker can be.
Namespace: Swan.Threading
Syntax
public enum WorkerState
Fields
| Name | Description |
|---|---|
| Created | The worker has been created and it is ready to start. |
| Paused | The worker is in the paused or suspended state. |
| Running | The worker is running it cycle logic. |
| Stopped | The worker is stopped and ready for disposal. |
| Waiting | The worker is running its delay logic. |