Class: ActiveSupport::Notifications::Fanout::BaseTimeGroup

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

Overview

:nodoc:

Direct Known Subclasses

MonotonicTimedGroup, TimedGroup

Instance Method Summary collapse

Methods inherited from BaseGroup

#each, #initialize

Constructor Details

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

Instance Method Details

#finish(name, id, payload) ⇒ Object



134
135
136
137
138
139
# File 'lib/active_support/notifications/fanout.rb', line 134

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



130
131
132
# File 'lib/active_support/notifications/fanout.rb', line 130

def start(name, id, payload)
  @start_time = now
end