summaryrefslogtreecommitdiff
path: root/state.go
diff options
context:
space:
mode:
Diffstat (limited to 'state.go')
-rw-r--r--state.go5
1 files changed, 2 insertions, 3 deletions
diff --git a/state.go b/state.go
index 6c27c4c1..7bd5437d 100644
--- a/state.go
+++ b/state.go
@@ -24,14 +24,13 @@ type State interface {
const (
// StateInactive - no associated process
StateInactive int64 = iota
+
// StateReady - ready for job.
StateReady
+
// StateWorking - working on given payload.
StateWorking
- // StateDestructing process is being destructed.
- StateDestructing
-
// StateStopping - process is being softly stopped.
StateStopping