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