blob: 427427b3245d2c54f000212eeccfc46c3804f648 [file] [log] [blame]
giolekvaf89e0462020-05-02 17:47:06 +04001package events
2
3type EventState string
4
5const (
6 EventStateNew EventState = "NEW"
7 EventStateProcessing EventState = "PROCESSING"
8 EventStateDone EventState = "DONE"
9)
10
11type Event struct {
12 Id string
13 State EventState
14 NodeId string
15}
16
17type EventStore interface {
18 GetEventsInState(state EventState) ([]Event, error)
19}