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.
36 37 38 |
# File 'lib/action_cable/server/broadcasting.rb', line 36 def initialize(server, broadcasting, coder:) @server, @broadcasting, @coder = server, broadcasting, coder end |
Instance Attribute Details
#broadcasting ⇒ Object (readonly)
Returns the value of attribute broadcasting.
34 35 36 |
# File 'lib/action_cable/server/broadcasting.rb', line 34 def broadcasting @broadcasting end |
#coder ⇒ Object (readonly)
Returns the value of attribute coder.
34 35 36 |
# File 'lib/action_cable/server/broadcasting.rb', line 34 def coder @coder end |
#server ⇒ Object (readonly)
Returns the value of attribute server.
34 35 36 |
# File 'lib/action_cable/server/broadcasting.rb', line 34 def server @server end |
Instance Method Details
#broadcast(message) ⇒ Object
40 41 42 43 44 |
# File 'lib/action_cable/server/broadcasting.rb', line 40 def broadcast() server.logger.info "[ActionCable] Broadcasting to #{broadcasting}: #{.inspect}" encoded = coder ? coder.encode() : server.pubsub.broadcast broadcasting, encoded end |