Class: ActiveSupport::Notifications::Fanout::BaseTimeGroup
- Defined in:
- lib/active_support/notifications/fanout.rb
Overview
:nodoc:
Direct Known Subclasses
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
131 132 133 134 135 136 |
# File 'lib/active_support/notifications/fanout.rb', line 131 def finish(name, id, payload) stop_time = now each do |listener| listener.call(name, @start_time, stop_time, id, payload) end end |
#start(name, id, payload) ⇒ Object
127 128 129 |
# File 'lib/active_support/notifications/fanout.rb', line 127 def start(name, id, payload) @start_time = now end |