class Framed::Emitters::InMemory

Attributes

reported[R]

Public Class Methods

new(client) click to toggle source
Calls superclass method Framed::Emitters::Base::new
# File lib/framed/emitters.rb, line 37
def initialize(client)
  super
  @reported = []
end

Public Instance Methods

enqueue(event) click to toggle source
# File lib/framed/emitters.rb, line 42
def enqueue(event)
  @reported << event
end