instance method
finish
Ruby on Rails 6.1.7.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 62
def finish(name, id, payload, listeners = listeners_for(name))
listeners.each { |s| s.finish(name, id, payload) }
end
Defined in activesupport/lib/active_support/notifications/fanout.rb line 62
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveSupport::Notifications::Fanout