1
0
mirror of https://github.com/newnius/YAO-scheduler.git synced 2025-06-08 06:41:56 +00:00
YAO-scheduler/src/state.go
2019-07-10 20:40:43 +08:00

17 lines
179 B
Go

package main
type State int
const (
// submitted
Created State = iota
// scheduling
Starting
// running
Running
// stopped
Stopped
// finished successfully
Finished
)