Methods
Class Public methods
new(raw_client)
📝 Source code
# File actioncable/lib/action_cable/subscription_adapter/redis.rb, line 213
def initialize(raw_client)
@raw_client = raw_client
end
🔎 See on GitHub
Instance Public methods
subscribe(*channel)
📝 Source code
# File actioncable/lib/action_cable/subscription_adapter/redis.rb, line 217
def subscribe(*channel)
send_command("subscribe", *channel)
end
🔎 See on GitHub
unsubscribe(*channel)
📝 Source code
# File actioncable/lib/action_cable/subscription_adapter/redis.rb, line 221
def unsubscribe(*channel)
send_command("unsubscribe", *channel)
end
🔎 See on GitHub