123456789101112131415161718 |
- package worker
- const (
-
- JobStatusNew = "new"
-
- JobStatusScheduled = "scheduled"
-
- JobStatusRunning = "running"
-
- JobStatusCancelled = "cancelled"
-
- JobStatusDone = "done"
-
- JobStatusException = "exception"
-
- JobStatusKilled = "killed"
- )
|