instance method
publish
Ruby on Rails 8.0.4
Since v3.0.20Signature
publish(name, *args)
No documentation comment.
Parameters
-
namereq -
argsrest
Source
# File activesupport/lib/active_support/notifications/fanout.rb, line 289
def publish(name, *args)
iterate_guarding_exceptions(listeners_for(name)) { |s| s.publish(name, *args) }
end
Defined in activesupport/lib/active_support/notifications/fanout.rb line 289
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveSupport::Notifications::Fanout