Class: Synapse::EventStore::SnapshotEventStore Abstract
- Inherits:
-
EventStore
- Object
- EventStore
- Synapse::EventStore::SnapshotEventStore
- Defined in:
- lib/synapse/event_store/event_store.rb
Overview
This class is abstract.
Represents an event store with the capability to manage aggregate snapshots
Instance Method Summary collapse
-
#append_snapshot_event(type_identifier, snapshot_event) ⇒ undefined
abstract
Appends the given snapshot event to the event store.
Methods inherited from EventStore
Instance Method Details
#append_snapshot_event(type_identifier, snapshot_event) ⇒ undefined
This method is abstract.
Appends the given snapshot event to the event store
44 45 46 |
# File 'lib/synapse/event_store/event_store.rb', line 44 def append_snapshot_event(type_identifier, snapshot_event) raise NotImplementedError end |