Class: Resilient::Instrumenters::Memory

Inherits:
Object
  • Object
show all
Defined in:
lib/resilient/instrumenters/memory.rb

Overview

Instrumentor that is useful for tests as it stores each of the events that are instrumented.

Defined Under Namespace

Classes: Event

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeMemory

Returns a new instance of Memory.



10
11
12
# File 'lib/resilient/instrumenters/memory.rb', line 10

def initialize
  reset
end

Instance Attribute Details

#eventsObject (readonly)

Returns the value of attribute events.



8
9
10
# File 'lib/resilient/instrumenters/memory.rb', line 8

def events
  @events
end

Instance Method Details

#instrument(name, payload = {}) ⇒ Object



14
15
16
17
18
19
20
21
22
23
24
25
26
27
# File 'lib/resilient/instrumenters/memory.rb', line 14

def instrument(name, payload = {})
  # Copy the payload to guard against later modifications to it, and to
  # ensure that all instrumentation code uses the payload passed to the
  # block rather than the one passed to #instrument.
  payload = payload.dup

  result = if block_given?
    yield payload
  else
    nil
  end
  @events << Event.new(name, payload, result)
  result
end

#resetObject



29
30
31
# File 'lib/resilient/instrumenters/memory.rb', line 29

def reset
  @events = []
end