Class: ActiveSupport::Notifications::Fanout::EventedGroup

Inherits:
BaseGroup show all
Defined in:
activesupport/lib/active_support/notifications/fanout.rb

Overview

:nodoc:

Instance Method Summary collapse

Methods inherited from BaseGroup

#each, #initialize

Methods included from ActiveSupport::Notifications::FanoutIteration

#iterate_guarding_exceptions

Constructor Details

This class inherits a constructor from ActiveSupport::Notifications::Fanout::BaseGroup

Instance Method Details

#finish(name, id, payload) ⇒ Object



159
160
161
162
163
# File 'activesupport/lib/active_support/notifications/fanout.rb', line 159

def finish(name, id, payload)
  each do |s|
    s.finish(name, id, payload)
  end
end

#start(name, id, payload) ⇒ Object



153
154
155
156
157
# File 'activesupport/lib/active_support/notifications/fanout.rb', line 153

def start(name, id, payload)
  each do |s|
    s.start(name, id, payload)
  end
end