method
start
v7.2.3 -
Show latest stable
- Class:
ActiveSupport::Notifications::Fanout
start(name, id, payload)public
No documentation available.
# File activesupport/lib/active_support/notifications/fanout.rb, line 277
def start(name, id, payload)
handle_stack = (IsolatedExecutionState[:_fanout_handle_stack] ||= [])
handle = build_handle(name, id, payload)
handle_stack << handle
handle.start
end