Flowdock
method

broadcast

Importance_0
v5.2.3 - Show latest stable - 0 notes - Class: Broadcaster
broadcast(message) public

No documentation

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

Hide source
# File actioncable/lib/action_cable/server/broadcasting.rb, line 42
          def broadcast(message)
            server.logger.debug "[ActionCable] Broadcasting to #{broadcasting}: #{message.inspect}"

            payload = { broadcasting: broadcasting, message: message, coder: coder }
            ActiveSupport::Notifications.instrument("broadcast.action_cable", payload) do
              encoded = coder ? coder.encode(message) : message
              server.pubsub.broadcast broadcasting, encoded
            end
          end
Register or log in to add new notes.