summaryrefslogtreecommitdiff
path: root/state.go
diff options
context:
space:
mode:
authorWolfy-J <[email protected]>2019-05-02 18:51:27 +0300
committerWolfy-J <[email protected]>2019-05-02 18:51:27 +0300
commitbb95a9fbd6cc7e8a2d8204417e965dc8e1282128 (patch)
tree46288a4337701a1ee6c7b8734e31cf531cf558fa /state.go
parentb3e7bbccdd7636b6ce7d90cf4f295e498feb719c (diff)
base watcher implementation
Diffstat (limited to 'state.go')
-rw-r--r--state.go5
1 files changed, 0 insertions, 5 deletions
diff --git a/state.go b/state.go
index 4d8b1eaa..8a065637 100644
--- a/state.go
+++ b/state.go
@@ -26,9 +26,6 @@ const (
// StateWorking - working on given payload.
StateWorking
- // StateStreaming - indicates that worker is streaming the data at the moment.
- StateStreaming
-
// StateStopping - process is being softly stopped.
StateStopping
@@ -57,8 +54,6 @@ func (s *state) String() string {
return "ready"
case StateWorking:
return "working"
- case StateStreaming:
- return "streaming"
case StateStopped:
return "stopped"
case StateErrored: