summaryrefslogtreecommitdiff
path: root/pool.go
diff options
context:
space:
mode:
Diffstat (limited to 'pool.go')
-rw-r--r--pool.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/pool.go b/pool.go
index f491dfa5..9747bc6b 100644
--- a/pool.go
+++ b/pool.go
@@ -19,6 +19,9 @@ type Pool interface {
// Workers returns worker list associated with the pool.
Workers() (workers []*Worker)
+ // DestroyWorker destroys workers and removes it from the pool.
+ DestroyWorker(w *Worker)
+
// Destroy all underlying workers (but let them to complete the task).
Destroy()
}