method
start
v4.0.2 -
Show latest stable
- Class:
ActiveSupport::Subscriber
start(name, id, payload)public
No documentation available.
# File activesupport/lib/active_support/subscriber.rb, line 53
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