Class: RubyEventStore::InstrumentedRepository

Inherits:
Object
  • Object
show all
Defined in:
lib/ruby_event_store/instrumented_repository.rb

Instance Method Summary collapse

Constructor Details

#initialize(repository, instrumentation) ⇒ InstrumentedRepository

Returns a new instance of InstrumentedRepository.



5
6
7
8
# File 'lib/ruby_event_store/instrumented_repository.rb', line 5

def initialize(repository, instrumentation)
  @repository = repository
  @instrumentation = instrumentation
end

Instance Method Details

#append_to_stream(records, stream, expected_version) ⇒ Object



10
11
12
13
14
# File 'lib/ruby_event_store/instrumented_repository.rb', line 10

def append_to_stream(records, stream, expected_version)
  instrumentation.instrument("append_to_stream.repository.rails_event_store", events: records, stream: stream) do
    repository.append_to_stream(records, stream, expected_version)
  end
end

#count(specification) ⇒ Object



42
43
44
45
46
# File 'lib/ruby_event_store/instrumented_repository.rb', line 42

def count(specification)
  instrumentation.instrument("count.repository.rails_event_store", specification: specification) do
    repository.count(specification)
  end
end

#delete_stream(stream) ⇒ Object



22
23
24
25
26
# File 'lib/ruby_event_store/instrumented_repository.rb', line 22

def delete_stream(stream)
  instrumentation.instrument("delete_stream.repository.rails_event_store", stream: stream) do
    repository.delete_stream(stream)
  end
end

#has_event?(event_id) ⇒ Boolean

Returns:

  • (Boolean)


28
29
30
# File 'lib/ruby_event_store/instrumented_repository.rb', line 28

def has_event?(event_id)
  repository.has_event?(event_id)
end

#last_stream_event(stream) ⇒ Object



32
33
34
# File 'lib/ruby_event_store/instrumented_repository.rb', line 32

def last_stream_event(stream)
  repository.last_stream_event(stream)
end


16
17
18
19
20
# File 'lib/ruby_event_store/instrumented_repository.rb', line 16

def link_to_stream(event_ids, stream, expected_version)
  instrumentation.instrument("link_to_stream.repository.rails_event_store", event_ids: event_ids, stream: stream) do
    repository.link_to_stream(event_ids, stream, expected_version)
  end
end

#read(specification) ⇒ Object



36
37
38
39
40
# File 'lib/ruby_event_store/instrumented_repository.rb', line 36

def read(specification)
  instrumentation.instrument("read.repository.rails_event_store", specification: specification) do
    repository.read(specification)
  end
end

#streams_of(event_id) ⇒ Object



54
55
56
57
58
# File 'lib/ruby_event_store/instrumented_repository.rb', line 54

def streams_of(event_id)
  instrumentation.instrument("streams_of.repository.rails_event_store", event_id: event_id) do
    repository.streams_of(event_id)
  end
end

#update_messages(messages) ⇒ Object



48
49
50
51
52
# File 'lib/ruby_event_store/instrumented_repository.rb', line 48

def update_messages(messages)
  instrumentation.instrument("update_messages.repository.rails_event_store", messages: messages) do
    repository.update_messages(messages)
  end
end