blob: d2a27373d7d5a2316653c2bedece95a3c20e6f54 (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
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"`
}
func (j Job) ID() string {
panic("implement me")
}
func (j Job) Priority() int64 {
panic("implement me")
}
func (j Job) Body() []byte {
panic("implement me")
}
func (j Job) Context() ([]byte, error) {
panic("implement me")
}
func (j Job) Ack() error {
panic("implement me")
}
func (j Job) Nack() error {
panic("implement me")
}
func (j Job) Requeue(delay uint32) error {
panic("implement me")
}
|