class SimpleEventSourcing::Events::EventStore::EventStoreBase

Public Instance Methods

commit(event) click to toggle source
# 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) click to toggle source
# File lib/simple_event_sourcing/events/event_store.rb, line 10
def get_history(aggregate_id)
  raise StandardError "This methid must be implemented"
end