instance method
finish
Ruby on Rails 5.2.8.1
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 47
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 47
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveSupport::Notifications::Fanout