method

publish_event

Importance_0
v7.1.3.2 - Show latest stable - 0 notes - Class: Evented
publish_event(event) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activesupport/lib/active_support/notifications/fanout.rb, line 400
          def publish_event(event)
            if @can_publish_event
              @delegate.publish_event event
            else
              publish(event.name, event.time, event.end, event.transaction_id, event.payload)
            end
          end
Register or log in to add new notes.