summaryrefslogtreecommitdiff
path: root/watcher.go
diff options
context:
space:
mode:
authorWolfy-J <[email protected]>2019-05-04 19:24:25 +0300
committerWolfy-J <[email protected]>2019-05-04 19:24:25 +0300
commit2efc533f2aac215d487a80020b0f9bf4ae5209c3 (patch)
treea80a7a74dc4ca8c290b8b1bf1f6d24535b5ae3d7 /watcher.go
parent726b31008e73ab83d0582305c28a8cf62322e47a (diff)
watchers renamed to controllers
Diffstat (limited to 'watcher.go')
-rw-r--r--watcher.go10
1 files changed, 0 insertions, 10 deletions
diff --git a/watcher.go b/watcher.go
deleted file mode 100644
index 4527fe68..00000000
--- a/watcher.go
+++ /dev/null
@@ -1,10 +0,0 @@
-package roadrunner
-
-// Watcher observes pool state and decides if any worker must be destroyed.
-type Watcher interface {
- // Lock watcher on given pool instance.
- Attach(p Pool) Watcher
-
- // Detach pool watching.
- Detach()
-}