module ActionCable::Channel::Broadcasting::ClassMethods

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 14
def broadcast_to(model, message)
  ActionCable.server.broadcast(broadcasting_for([ channel_name, model ]), message)
end