diff options
author | Valery Piashchynski <[email protected]> | 2020-12-20 18:28:46 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2020-12-20 18:28:46 +0300 |
commit | f4a36c7f684216fb408693a6c494486144df57cf (patch) | |
tree | e1b61bf7e74cb63aa45f9ca0284a4cffe8e06b0e /interfaces/pool/pool.go | |
parent | fbd5adde5abae6f7adb7fcdafc226bcd3480d498 (diff) | |
parent | a10d20d20e910ed8fcfbc3bc690aaf17ee338ff3 (diff) |
Merge remote-tracking branch 'origin/2.0' into plugin/redis
# Conflicts:
# go.sum
# pkg/pipe/pipe_factory_test.go
# pkg/pool/static_pool.go
# plugins/rpc/plugin.go
Diffstat (limited to 'interfaces/pool/pool.go')
-rw-r--r-- | interfaces/pool/pool.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/interfaces/pool/pool.go b/interfaces/pool/pool.go index a1015fd6..72da9597 100644 --- a/interfaces/pool/pool.go +++ b/interfaces/pool/pool.go @@ -7,7 +7,7 @@ import ( "github.com/spiral/roadrunner/v2/interfaces/events" "github.com/spiral/roadrunner/v2/interfaces/worker" - "github.com/spiral/roadrunner/v2/internal" + "github.com/spiral/roadrunner/v2/pkg/payload" ) // Pool managed set of inner worker processes. @@ -19,9 +19,9 @@ type Pool interface { GetConfig() interface{} // Exec - Exec(rqs internal.Payload) (internal.Payload, error) + Exec(rqs payload.Payload) (payload.Payload, error) - ExecWithContext(ctx context.Context, rqs internal.Payload) (internal.Payload, error) + ExecWithContext(ctx context.Context, rqs payload.Payload) (payload.Payload, error) // Workers returns worker list associated with the pool. Workers() (workers []worker.BaseProcess) |