module RubyCqrs::Data::EventStore

Public Instance Methods

load_by(guid, command_context) click to toggle source
# File lib/ruby_cqrs/data/event_store.rb, line 4
def load_by guid, command_context
  raise NotImplementedError
end
save(changes, command_context) click to toggle source
# File lib/ruby_cqrs/data/event_store.rb, line 8
def save changes, command_context
  raise NotImplementedError
end