Class: Midnight::BusinessLogic::EventQueue

Inherits:
EventDispatcher show all
Defined in:
lib/midnight/business_logic/event_queue.rb

Instance Method Summary collapse

Methods inherited from EventDispatcher

#initialize

Constructor Details

This class inherits a constructor from Midnight::BusinessLogic::EventDispatcher

Instance Method Details

#call(events, **metadata) ⇒ Object



4
5
6
7
8
# File 'lib/midnight/business_logic/event_queue.rb', line 4

def call(events, **)
  events.each do |event|
    super(event, **)
  end
end