42 lines
1.1 KiB
Go
Raw Normal View History

2020-10-27 16:03:17 +01:00
package eventstore
import (
"time"
)
2020-11-06 13:47:27 +01:00
type EventPusher interface {
// EditorService is the service who wants to push the event
2020-10-27 16:03:17 +01:00
EditorService() string
2020-11-06 13:47:27 +01:00
//EditorUser is the user who wants to push the event
2020-10-27 16:03:17 +01:00
EditorUser() string
//Type must return an event type which should be unique in the aggregate
Type() EventType
//Data returns the payload of the event. It represent the changed fields by the event
// valid types are:
// * nil (no payload),
// * json byte array
// * struct which can be marshalled to json
// * pointer to struct which can be marshalled to json
Data() interface{}
2020-11-06 13:47:27 +01:00
//CheckPrevious ensures the event order if true
// if false the previous sequence is not checked on push
CheckPrevious() bool
2020-10-27 16:03:17 +01:00
}
2020-11-06 13:47:27 +01:00
type EventReader interface {
// EditorService is the service who pushed the event
EditorService() string
//EditorUser is the user who pushed the event
EditorUser() string
//Type is the type of the event
Type() EventType
AggregateID() string
AggregateType() AggregateType
ResourceOwner() string
AggregateVersion() Version
Sequence() uint64
PreviousSequence() uint64
CreationDate() time.Time
2020-10-27 16:03:17 +01:00
}