Class: SimpleEventSourcing::Events::EventStore::EventStoreBase
- Inherits:
-
Object
- Object
- SimpleEventSourcing::Events::EventStore::EventStoreBase
- Defined in:
- lib/simple_event_sourcing/events/event_store.rb
Direct Known Subclasses
Instance Method Summary collapse
Instance Method Details
#commit(event) ⇒ Object
6 7 8 |
# File 'lib/simple_event_sourcing/events/event_store.rb', line 6 def commit(event) raise StandardError "This methid must be implemented" end |
#get_history(aggregate_id) ⇒ Object
10 11 12 |
# File 'lib/simple_event_sourcing/events/event_store.rb', line 10 def get_history(aggregate_id) raise StandardError "This methid must be implemented" end |