-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathevent.go
56 lines (50 loc) · 794 Bytes
/
event.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
package dingo
import (
"time"
)
var EventLvl = struct {
Debug int
Info int
Warning int
Error int
}{
0,
1,
2,
3,
}
/*
*/
type Event struct {
// origin of event: please refer to dingo.ObjT for possible values.
Origin int
Time time.Time
Level int
Code int
Payload interface{}
}
var EventCode = struct {
Generic int
TaskDeliveryFailure int
DuplicatedPolling int
}{
0, 1, 2,
}
func NewEvent(orig, lvl, code int, payload interface{}) *Event {
return &Event{
Origin: orig,
Time: time.Now(),
Level: lvl,
Code: code,
Payload: payload,
}
}
func NewEventFromError(orig int, err error) *Event {
return &Event{
Origin: orig,
Time: time.Now(),
Level: EventLvl.Error,
Code: EventCode.Generic,
Payload: err,
}
}