instance method
start
Ruby on Rails 7.0.10
Since v6.0.6 Last seen in v7.0.10Signature
start(name, id, payload)
No documentation comment.
Parameters
-
namereq -
idreq -
payloadreq
Source
# File activesupport/lib/active_support/notifications/fanout.rb, line 258
def start(name, id, payload)
stack = IsolatedExecutionState[:_event_stack] ||= []
event = build_event name, id, payload
event.start!
stack.push event
end
Defined in activesupport/lib/active_support/notifications/fanout.rb line 258
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveSupport::Notifications::Fanout::Subscribers::EventObject