method
start
v5.1.7 -
Show latest stable
- Class:
ActiveSupport::Subscriber
start(name, id, payload)public
No documentation available.
# File activesupport/lib/active_support/subscriber.rb, line 84
def start(name, id, payload)
e = ActiveSupport::Notifications::Event.new(name, Time.now, nil, id, payload)
parent = event_stack.last
parent << e if parent
event_stack.push e
end