Class: ActiveSupport::Notifications::Fanout::EventedGroup
- Defined in:
- lib/active_support/notifications/fanout.rb
Overview
:nodoc:
Instance Method Summary collapse
Methods inherited from BaseGroup
Constructor Details
This class inherits a constructor from ActiveSupport::Notifications::Fanout::BaseGroup
Instance Method Details
#finish(name, id, payload) ⇒ Object
163 164 165 166 167 |
# File 'lib/active_support/notifications/fanout.rb', line 163 def finish(name, id, payload) each do |s| s.finish(name, id, payload) end end |
#start(name, id, payload) ⇒ Object
157 158 159 160 161 |
# File 'lib/active_support/notifications/fanout.rb', line 157 def start(name, id, payload) each do |s| s.start(name, id, payload) end end |