instance method
finish
Ruby on Rails 7.0.10
Since v4.0.13Signature
finish(name, id, payload, listeners = listeners_for(name))
No documentation comment.
Parameters
-
namereq -
idreq -
payloadreq -
listenersopt = listeners_for(name)
Source
# File activesupport/lib/active_support/notifications/fanout.rb, line 75
def finish(name, id, payload, listeners = listeners_for(name))
iterate_guarding_exceptions(listeners) { |s| s.finish(name, id, payload) }
end
Defined in activesupport/lib/active_support/notifications/fanout.rb line 75
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveSupport::Notifications::Fanout