class Eventception::Event

Public Instance Methods

propagation_stopped?() click to toggle source
# File lib/eventception/event.rb, line 30
def propagation_stopped?
  propagation_stopped
end
stop_propagation() click to toggle source
# File lib/eventception/event.rb, line 34
def stop_propagation
  @propagation_stopped = true
end

Private Instance Methods

propagation_stopped() click to toggle source
# File lib/eventception/event.rb, line 24
def propagation_stopped
  @propagation_stopped ||= false
end