diff options
Diffstat (limited to 'pkg/worker_watcher/container/interface.go')
-rw-r--r-- | pkg/worker_watcher/container/interface.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pkg/worker_watcher/container/interface.go b/pkg/worker_watcher/container/interface.go index bb66897f..532bace9 100644 --- a/pkg/worker_watcher/container/interface.go +++ b/pkg/worker_watcher/container/interface.go @@ -2,8 +2,12 @@ package container import "github.com/spiral/roadrunner/v2/pkg/worker" +// Vector interface represents vector container type Vector interface { + // Enqueue used to put worker to the vector Enqueue(worker.BaseProcess) + // Dequeue used to get worker from the vector Dequeue() (worker.BaseProcess, bool) + // Destroy used to stop releasing the workers Destroy() } |