diff options
Diffstat (limited to 'plugins/jobs/oooold/broker.go')
-rw-r--r-- | plugins/jobs/oooold/broker.go | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/plugins/jobs/oooold/broker.go b/plugins/jobs/oooold/broker.go deleted file mode 100644 index d49616e7..00000000 --- a/plugins/jobs/oooold/broker.go +++ /dev/null @@ -1,47 +0,0 @@ -package oooold - -// Broker manages set of pipelines and provides ability to push jobs into them. -type Broker interface { - // Register broker pipeline. - Register(pipe *Pipeline) error - - // Consume configures pipeline to be consumed. With execPool to nil to disable pipelines. Method can be called before - // the service is started! - Consume(pipe *Pipeline, execPool chan Handler, errHandler ErrorHandler) error - - // Push job into the worker. - Push(pipe *Pipeline, j *Job) (string, error) - - // Stat must fetch statistics about given pipeline or return error. - Stat(pipe *Pipeline) (stat *Stat, err error) -} - -// EventProvider defines the ability to throw events for the broker. -type EventProvider interface { - // Listen attaches the even listener. - Listen(lsn func(event int, ctx interface{})) -} - -// Stat contains information about pipeline. -type Stat struct { - // Pipeline name. - Pipeline string - - // Broken is name of associated broker. - Broker string - - // InternalName defines internal broker specific pipeline name. - InternalName string - - // Consuming indicates that pipeline is pipelines jobs. - Consuming bool - - // testQueue defines number of pending jobs. - Queue int64 - - // Active defines number of jobs which are currently being processed. - Active int64 - - // Delayed defines number of jobs which are being processed. - Delayed int64 -} |