module EventDispatcher::Event

Attributes

stop_propagation[RW]

Public Class Methods

new() click to toggle source

A listener can prevent any other listeners from being called.

# File lib/event_dispatcher/event.rb, line 5
def initialize
   @stop_propagation = false
end