method
remove_channel
v6.0.0 -
Show latest stable
- Class:
ActionCable::SubscriptionAdapter::Redis::Listener
remove_channel(channel)public
No documentation available.
# File actioncable/lib/action_cable/subscription_adapter/redis.rb, line 139
def remove_channel(channel)
@subscription_lock.synchronize do
when_connected { send_command("unsubscribe", channel) }
end
end