summaryrefslogtreecommitdiff
path: root/state.go
diff options
context:
space:
mode:
Diffstat (limited to 'state.go')
-rw-r--r--state.go12
1 files changed, 10 insertions, 2 deletions
diff --git a/state.go b/state.go
index d1068ab3..6c27c4c1 100644
--- a/state.go
+++ b/state.go
@@ -28,9 +28,17 @@ const (
StateReady
// StateWorking - working on given payload.
StateWorking
- // StateStopped - process has been terminated
+
+ // StateDestructing process is being destructed.
+ StateDestructing
+
+ // StateStopping - process is being softly stopped.
+ StateStopping
+
+ // StateStopped - process has been terminated.
StateStopped
- // StateErrored - error state (can't be used)
+
+ // StateErrored - error state (can't be used).
StateErrored
)