Class: ActionCable::Server::Broadcasting::Broadcaster

Inherits:
Object
  • Object
show all
Defined in:
actioncable/lib/action_cable/server/broadcasting.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(server, broadcasting, coder:) ⇒ Broadcaster

Returns a new instance of Broadcaster.



40
41
42
# File 'actioncable/lib/action_cable/server/broadcasting.rb', line 40

def initialize(server, broadcasting, coder:)
  @server, @broadcasting, @coder = server, broadcasting, coder
end

Instance Attribute Details

#broadcastingObject (readonly)

Returns the value of attribute broadcasting.



38
39
40
# File 'actioncable/lib/action_cable/server/broadcasting.rb', line 38

def broadcasting
  @broadcasting
end

#coderObject (readonly)

Returns the value of attribute coder.



38
39
40
# File 'actioncable/lib/action_cable/server/broadcasting.rb', line 38

def coder
  @coder
end

#serverObject (readonly)

Returns the value of attribute server.



38
39
40
# File 'actioncable/lib/action_cable/server/broadcasting.rb', line 38

def server
  @server
end

Instance Method Details

#broadcast(message) ⇒ Object



44
45
46
47
48
49
50
51
52
# 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