class EvilEvents::Core::Broadcasting::Dispatcher

@api private @since 0.1.0

Constants

Mixin

@api private @since 0.1.0

Public Class Methods

dispatch(event) click to toggle source

@param event [EvilEvents::Core::Events::AbstractEvent] @return void

@since 0.1.0

# File lib/evil_events/core/broadcasting/dispatcher.rb, line 12
def dispatch(event) # Broadcast
  EvilEvents::Core::Bootstrap[:event_system].manager_of_event(event).notify(event)
end