Class: ActiveSupport::Notifications::Fanout::Subscribers::Timed

Inherits:
Evented
  • Object
show all
Defined in:
activesupport/lib/active_support/notifications/fanout.rb

Instance Method Summary collapse

Methods inherited from Evented

#initialize, #matches?, #subscribed_to?

Constructor Details

This class inherits a constructor from ActiveSupport::Notifications::Fanout::Subscribers::Evented

Instance Method Details

#finish(name, id, payload) ⇒ Object



119
120
121
122
123
# File 'activesupport/lib/active_support/notifications/fanout.rb', line 119

def finish(name, id, payload)
  timestack = Thread.current[:_timestack]
  started = timestack.pop
  @delegate.call(name, started, Time.now, id, payload)
end

#publish(name, *args) ⇒ Object



110
111
112
# File 'activesupport/lib/active_support/notifications/fanout.rb', line 110

def publish(name, *args)
  @delegate.call name, *args
end

#start(name, id, payload) ⇒ Object



114
115
116
117
# File 'activesupport/lib/active_support/notifications/fanout.rb', line 114

def start(name, id, payload)
  timestack = Thread.current[:_timestack] ||= []
  timestack.push Time.now
end