summaryrefslogtreecommitdiff
path: root/plugins/jobs/job/general.go
blob: 2c7d04f059a33700281f06fd264780a47d7e865b (plain)
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
package job

// constant keys to pack/unpack messages from different drivers
const (
	RRID          string = "rr_id"
	RRJob         string = "rr_job"
	RRHeaders     string = "rr_headers"
	RRPipeline    string = "rr_pipeline"
	RRTimeout     string = "rr_timeout"
	RRDelay       string = "rr_delay"
	RRPriority    string = "rr_priority"
	RRMaxAttempts string = "rr_max_attempts"
)

// Job carries information about single job.
type Job struct {
	// Job contains name of job broker (usually PHP class).
	Job string `json:"job"`

	// Ident is unique identifier of the job, should be provided from outside
	Ident string `json:"id"`

	// Payload is string data (usually JSON) passed to Job broker.
	Payload string `json:"payload"`

	// Headers with key-value pairs
	Headers map[string][]string `json:"headers"`

	// Options contains set of PipelineOptions specific to job execution. Can be empty.
	Options *Options `json:"options,omitempty"`
}