module ActionCable::Channel::Broadcasting
Public Instance Methods
broadcast_to(model, message)
click to toggle source
Broadcast a hash to a unique broadcasting for this model
in
this channel.
# File lib/action_cable/channel/broadcasting.rb, line 12 def broadcast_to(model, message) ActionCable.server.broadcast(broadcasting_for([ channel_name, model ]), message) end