diff options
author | Wolfy-J <[email protected]> | 2018-03-31 18:06:31 +0300 |
---|---|---|
committer | Wolfy-J <[email protected]> | 2018-03-31 18:06:31 +0300 |
commit | d5fba67987cd6589ceb7a882a027be7612370688 (patch) | |
tree | 7d3297817063de3f6b53b24e13a4a5dab9e1da44 /pool.go | |
parent | 93680a356e2fd30f2502d150b4ef0ad61fcc8a74 (diff) |
worker destruction made public
Diffstat (limited to 'pool.go')
-rw-r--r-- | pool.go | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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() } |