Class: ActionCable::Server::Broadcasting::Broadcaster
- Inherits:
-
Object
- Object
- ActionCable::Server::Broadcasting::Broadcaster
- Defined in:
- lib/action_cable/server/broadcasting.rb
Instance Attribute Summary collapse
-
#broadcasting ⇒ Object
readonly
Returns the value of attribute broadcasting.
-
#coder ⇒ Object
readonly
Returns the value of attribute coder.
-
#server ⇒ Object
readonly
Returns the value of attribute server.
Instance Method Summary collapse
- #broadcast(message) ⇒ Object
-
#initialize(server, broadcasting, coder:) ⇒ Broadcaster
constructor
A new instance of Broadcaster.
Constructor Details
#initialize(server, broadcasting, coder:) ⇒ Broadcaster
Returns a new instance of Broadcaster.
38 39 40 |
# File 'lib/action_cable/server/broadcasting.rb', line 38 def initialize(server, broadcasting, coder:) @server, @broadcasting, @coder = server, broadcasting, coder end |
Instance Attribute Details
#broadcasting ⇒ Object (readonly)
Returns the value of attribute broadcasting.
36 37 38 |
# File 'lib/action_cable/server/broadcasting.rb', line 36 def broadcasting @broadcasting end |
#coder ⇒ Object (readonly)
Returns the value of attribute coder.
36 37 38 |
# File 'lib/action_cable/server/broadcasting.rb', line 36 def coder @coder end |
#server ⇒ Object (readonly)
Returns the value of attribute server.
36 37 38 |
# File 'lib/action_cable/server/broadcasting.rb', line 36 def server @server end |
Instance Method Details
#broadcast(message) ⇒ Object
42 43 44 45 46 47 48 49 50 |
# File 'lib/action_cable/server/broadcasting.rb', line 42 def broadcast() server.logger.debug "[ActionCable] Broadcasting to #{broadcasting}: #{.inspect}" payload = { broadcasting: broadcasting, message: , coder: coder } ActiveSupport::Notifications.instrument("broadcast.action_cable", payload) do encoded = coder ? coder.encode() : server.pubsub.broadcast broadcasting, encoded end end |