-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathworker.go
33 lines (27 loc) · 937 Bytes
/
worker.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package worker
import "context"
// Worker is the interface to implement to provide workers.
type Worker interface {
Name() string
Run(ctx context.Context) error
}
// WorkerRegistration is a [Worker] registration, with optional [WorkerExecutionOption].
type WorkerRegistration struct {
worker Worker
options []WorkerExecutionOption
}
// NewWorkerRegistration returns a new [WorkerRegistration] for a given [Worker] and an optional list of [WorkerRegistration].
func NewWorkerRegistration(worker Worker, options ...WorkerExecutionOption) *WorkerRegistration {
return &WorkerRegistration{
worker: worker,
options: options,
}
}
// Worker returns the [Worker] of the [WorkerRegistration].
func (r *WorkerRegistration) Worker() Worker {
return r.worker
}
// Options returns the list of [WorkerExecutionOption] of the [WorkerRegistration].
func (r *WorkerRegistration) Options() []WorkerExecutionOption {
return r.options
}