Module: RubyCqrs::Data::EventStore

Included in:
InMemoryEventStore
Defined in:
lib/ruby_cqrs/data/event_store.rb

Instance Method Summary collapse

Instance Method Details

#load_by(guid, command_context) ⇒ Object

Raises:

  • (NotImplementedError)


4
5
6
# File 'lib/ruby_cqrs/data/event_store.rb', line 4

def load_by guid, command_context
  raise NotImplementedError
end

#save(changes, command_context) ⇒ Object

Raises:

  • (NotImplementedError)


8
9
10
# File 'lib/ruby_cqrs/data/event_store.rb', line 8

def save changes, command_context
  raise NotImplementedError
end