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
162 163 164 165 166 |
# File 'lib/active_support/notifications/fanout.rb', line 162 def finish(name, id, payload) each do |s| s.finish(name, id, payload) end end |
#start(name, id, payload) ⇒ Object
156 157 158 159 160 |
# File 'lib/active_support/notifications/fanout.rb', line 156 def start(name, id, payload) each do |s| s.start(name, id, payload) end end |