diff options
author | Valery Piashchynski <[email protected]> | 2021-01-24 01:24:50 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2021-01-24 01:24:50 +0300 |
commit | 00f94201218079cf2ba3ebbddc9095c0ac4804ae (patch) | |
tree | 91fb62dd0c3a78dff2eaf1d0586397a0031682d5 /pkg/pool/interface.go | |
parent | e5a93ee2a305c87ab128dfd166e735c6eeb77e43 (diff) |
Update Pool and WorkerWatcher interfaces
Diffstat (limited to 'pkg/pool/interface.go')
-rw-r--r-- | pkg/pool/interface.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/pool/interface.go b/pkg/pool/interface.go index f3fe4065..4f7ae595 100644 --- a/pkg/pool/interface.go +++ b/pkg/pool/interface.go @@ -19,7 +19,7 @@ type Pool interface { ExecWithContext(ctx context.Context, rqs payload.Payload) (payload.Payload, error) // Workers returns worker list associated with the pool. - Workers() (workers []*worker.SyncWorkerImpl) + Workers() (workers []worker.SyncWorker) // Remove worker from the pool. RemoveWorker(worker worker.SyncWorker) error |