diff options
author | Valery Piashchynski <[email protected]> | 2021-09-16 21:46:50 +0300 |
---|---|---|
committer | GitHub <[email protected]> | 2021-09-16 21:46:50 +0300 |
commit | 3581b45f237a3f7aa29591ceb2bf6f4a4642a2f5 (patch) | |
tree | e723b19ec1ac16b7ccc7b3c2da69d4a416d63d81 /common/jobs/interface.go | |
parent | 337d292dd2d6ff0a555098b1970d8194d8df8bc2 (diff) | |
parent | 823d831b57b75f70c7c3bbbee355f2016633bb3b (diff) |
[#803]: feat(plugins): move plugins to a separate repositoryv2.5.0-alpha.2
[#803]: feat(plugins): move plugins to a separate repository
Diffstat (limited to 'common/jobs/interface.go')
-rw-r--r-- | common/jobs/interface.go | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/common/jobs/interface.go b/common/jobs/interface.go deleted file mode 100644 index 4b5ff70e..00000000 --- a/common/jobs/interface.go +++ /dev/null @@ -1,31 +0,0 @@ -package jobs - -import ( - "context" - - "github.com/spiral/roadrunner/v2/pkg/events" - priorityqueue "github.com/spiral/roadrunner/v2/pkg/priority_queue" - jobState "github.com/spiral/roadrunner/v2/pkg/state/job" - "github.com/spiral/roadrunner/v2/plugins/jobs/job" - "github.com/spiral/roadrunner/v2/plugins/jobs/pipeline" -) - -// Consumer represents a single jobs driver interface -type Consumer interface { - Push(ctx context.Context, job *job.Job) error - Register(ctx context.Context, pipeline *pipeline.Pipeline) error - Run(ctx context.Context, pipeline *pipeline.Pipeline) error - Stop(ctx context.Context) error - - Pause(ctx context.Context, pipeline string) - Resume(ctx context.Context, pipeline string) - - // State provide information about driver state - State(ctx context.Context) (*jobState.State, error) -} - -// Constructor constructs Consumer interface. Endure abstraction. -type Constructor interface { - JobsConstruct(configKey string, e events.Handler, queue priorityqueue.Queue) (Consumer, error) - FromPipeline(pipe *pipeline.Pipeline, e events.Handler, queue priorityqueue.Queue) (Consumer, error) -} |