instance method
finish
Ruby on Rails 8.0.4
Since v4.0.13Signature
finish(name, id, payload, listeners = nil)
No documentation comment.
Parameters
-
namereq -
idreq -
payloadreq -
listenersopt = nil
Source
# File activesupport/lib/active_support/notifications/fanout.rb, line 283
def finish(name, id, payload, listeners = nil)
handle_stack = IsolatedExecutionState[:_fanout_handle_stack]
handle = handle_stack.pop
handle.finish_with_values(name, id, payload)
end
Defined in activesupport/lib/active_support/notifications/fanout.rb line 283
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveSupport::Notifications::Fanout