blob: 68dd34e5ee36ec2b2572e6e1be3349da6cbec8fd (
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
package jobs
import "time"
const (
// EventPushOK thrown when new job has been added. JobEvent is passed as context.
EventPushOK = iota + 1500
// EventPushError caused when job can not be registered.
EventPushError
// EventJobStart thrown when new job received.
EventJobStart
// EventJobOK thrown when job execution is successfully completed. JobEvent is passed as context.
EventJobOK
// EventJobError thrown on all job related errors. See JobError as context.
EventJobError
// EventPipeConsume when pipeline pipelines has been requested.
EventPipeConsume
// EventPipeActive when pipeline has started.
EventPipeActive
// EventPipeStop when pipeline has begun stopping.
EventPipeStop
// EventPipeStopped when pipeline has been stopped.
EventPipeStopped
// EventPipeError when pipeline specific error happen.
EventPipeError
// EventBrokerReady thrown when broken is ready to accept/serve tasks.
EventBrokerReady
)
// JobEvent represent job event.
type JobEvent struct {
// String is job id.
ID string
// Job is failed job.
Job *Job
// event timings
start time.Time
elapsed time.Duration
}
// Elapsed returns duration of the invocation.
func (e *JobEvent) Elapsed() time.Duration {
return e.elapsed
}
// JobError represents singular Job error event.
type JobError struct {
// String is job id.
ID string
// Job is failed job.
Job *Job
// Caused contains job specific error.
Caused error
// event timings
start time.Time
elapsed time.Duration
}
// Elapsed returns duration of the invocation.
func (e *JobError) Elapsed() time.Duration {
return e.elapsed
}
// Caused returns error message.
func (e *JobError) Error() string {
return e.Caused.Error()
}
// PipelineError defines pipeline specific errors.
type PipelineError struct {
// Pipeline is associated pipeline.
Pipeline *Pipeline
// Caused send by broker.
Caused error
}
// Error returns error message.
func (e *PipelineError) Error() string {
return e.Caused.Error()
}
|