method
remove_channel
v8.1.1 -
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 149
def remove_channel(channel)
@subscription_lock.synchronize do
when_connected { @subscribed_client.unsubscribe(channel) }
end
end