-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproto_help.go
39 lines (33 loc) · 979 Bytes
/
proto_help.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
34
35
36
37
38
39
package pipelines
import "github.com/bign8/pipelines/utils"
// TODO: use statistical datastructure to guarantee GUID uniqueness
// New constructs new record based on a source record
func (r *Record) New(data string) *Record {
return &Record{
CorrelationID: r.CorrelationID,
Guid: utils.RandUint64(),
Data: data,
Test: r.Test,
}
}
// AsTest constructs a copy of this record intended for test routing
func (r Record) AsTest() *Record {
return &Record{
CorrelationID: r.CorrelationID,
Guid: utils.RandUint64(),
Data: r.Data,
Test: true,
}
}
// NewRecord constructs a completely new record
func NewRecord(data string) *Record {
return &Record{
CorrelationID: utils.RandUint64(),
Guid: utils.RandUint64(),
Data: data,
}
}
// ServiceKey generates a worker address for the worker designed to execute this work
func (w Work) ServiceKey() string {
return w.Service + "." + w.Key
}