1
0
mirror of https://github.com/newnius/YAO-scheduler.git synced 2025-12-15 16:16:44 +00:00
Files
YAO-scheduler/src/state.go

19 lines
188 B
Go
Raw Normal View History

2019-07-10 20:40:43 +08:00
package main
type State int
const (
// submitted
Created State = iota
// scheduling
Starting
// running
Running
// stopped
Stopped
// finished successfully
Finished
2020-05-04 13:59:01 +08:00
Failed
2019-07-10 20:40:43 +08:00
)