Skip to Content Skip to Search
Methods
B
N

Attributes

[R] broadcasting
[R] coder
[R] server

Class Public methods

new(server, broadcasting, coder:)

# File actioncable/lib/action_cable/server/broadcasting.rb, line 40
def initialize(server, broadcasting, coder:)
  @server, @broadcasting, @coder = server, broadcasting, coder
end

Instance Public methods

broadcast(message)

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

  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