summaryrefslogtreecommitdiff
path: root/interfaces/worker/worker.go
diff options
context:
space:
mode:
Diffstat (limited to 'interfaces/worker/worker.go')
-rw-r--r--interfaces/worker/worker.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/interfaces/worker/worker.go b/interfaces/worker/worker.go
index edbc68d9..773dd044 100644
--- a/interfaces/worker/worker.go
+++ b/interfaces/worker/worker.go
@@ -8,6 +8,7 @@ import (
"github.com/spiral/goridge/v3"
"github.com/spiral/roadrunner/v2/interfaces/events"
"github.com/spiral/roadrunner/v2/internal"
+ "github.com/spiral/roadrunner/v2/pkg/payload"
)
// Allocator is responsible for worker allocation in the pool
@@ -56,7 +57,7 @@ type SyncWorker interface {
// BaseProcess provides basic functionality for the SyncWorker
BaseProcess
// Exec used to execute payload on the SyncWorker, there is no TIMEOUTS
- Exec(rqs internal.Payload) (internal.Payload, error)
+ Exec(rqs payload.Payload) (payload.Payload, error)
// ExecWithContext used to handle Exec with TTL
- ExecWithContext(ctx context.Context, p internal.Payload) (internal.Payload, error)
+ ExecWithContext(ctx context.Context, p payload.Payload) (payload.Payload, error)
}