Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
var ErrModelNotSet = errors.New("model not set")
ErrModelNotSet is when a model factory is not set on the EventHandler.
Functions ¶
This section is empty.
Types ¶
type Error ¶
type Error struct { // Err is the error that happened when projecting the event. Err error // Projector is the projector where the error happened. Projector string // EventVersion is the version of the event. EventVersion int // EntityVersion is the version of the entity. EntityVersion int }
Error is an error in the projector.
type EventHandler ¶
type EventHandler struct {
// contains filtered or unexported fields
}
EventHandler is a CQRS projection handler to run a Projector implementation.
func NewEventHandler ¶
func NewEventHandler(projector Projector, repo eh.ReadWriteRepo, options ...Option) *EventHandler
NewEventHandler creates a new EventHandler.
func (*EventHandler) HandleEvent ¶
HandleEvent implements the HandleEvent method of the eventhorizon.EventHandler interface. It will try to find the correct version of the model, waiting for it the projector has the WithWait option set.
func (*EventHandler) HandlerType ¶ added in v1.0.1
func (h *EventHandler) HandlerType() eh.EventHandlerType
HandlerType implements the HandlerType method of the eventhorizon.EventHandler interface.
func (*EventHandler) SetEntityFactory ¶
func (h *EventHandler) SetEntityFactory(f func() eh.Entity)
SetEntityFactory sets a factory function that creates concrete entity types.
type Option ¶ added in v1.0.1
type Option func(*EventHandler)
Option is an option setter used to configure creation.
func WithEntityLookup ¶ added in v1.0.1
WithEntityLookup can be used to provide an alternative ID (from the aggregate ID) for fetching the projected entity. The lookup func can for example extract another field from the event or use a static ID for some singleton-like projections.
func WithIrregularVersioning ¶ added in v1.0.1
func WithIrregularVersioning() Option
WithIrregularVersioning sets the option to allow gaps in the version numbers. This can be useful for projectors that project only some events of a larger aggregate, which will lead to gaps in the versions.
type Projector ¶
type Projector interface { // ProjectorType returns the type of the projector. ProjectorType() Type // Project projects an event onto a model and returns the updated model or // an error. Project(context.Context, eh.Event, eh.Entity) (eh.Entity, error) }
Projector is a projector of events onto models.