Documentation ¶
Index ¶
- type EventRecord
- type EventStore
- func (s *EventStore) FailedEvents() []eh.Event
- func (s *EventStore) FullRecording() []*EventRecord
- func (s *EventStore) PendingEvents() []eh.Event
- func (s *EventStore) ResetTrace()
- func (s *EventStore) Save(ctx context.Context, events []eh.Event, originalVersion int) error
- func (s *EventStore) StartRecording()
- func (s *EventStore) StopRecording()
- func (s *EventStore) SuccessfulEvents() []eh.Event
- type Status
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type EventRecord ¶ added in v0.14.7
EventRecord is a record for an event with additional metadata for status.
type EventStore ¶
type EventStore struct { eh.EventStore // contains filtered or unexported fields }
EventStore wraps an eventhorizon.EventStore and adds debug event recording.
func NewEventStore ¶
func NewEventStore(eventStore eh.EventStore) *EventStore
NewEventStore creates a new EventStore.
func (*EventStore) FailedEvents ¶ added in v0.14.7
func (s *EventStore) FailedEvents() []eh.Event
FailedEvents returns the events that failed during the recording.
func (*EventStore) FullRecording ¶ added in v0.14.7
func (s *EventStore) FullRecording() []*EventRecord
FullRecording returns all events that happened during the recording, including status.
func (*EventStore) PendingEvents ¶ added in v0.14.7
func (s *EventStore) PendingEvents() []eh.Event
PendingEvents returns the events that where pending during the recording.
func (*EventStore) StartRecording ¶
func (s *EventStore) StartRecording()
StartRecording starts recording of handled events.
func (*EventStore) StopRecording ¶
func (s *EventStore) StopRecording()
StopRecording stops recording of handled events.
func (*EventStore) SuccessfulEvents ¶ added in v0.14.7
func (s *EventStore) SuccessfulEvents() []eh.Event
SuccessfulEvents returns the events that succeeded during the recording.
Click to show internal directories.
Click to hide internal directories.