Skip to Content Skip to Search
Methods
N
S
U

Class Public methods

new(raw_client)

# File actioncable/lib/action_cable/subscription_adapter/redis.rb, line 213
def initialize(raw_client)
  @raw_client = raw_client
end

Instance Public methods

subscribe(*channel)

# File actioncable/lib/action_cable/subscription_adapter/redis.rb, line 217
def subscribe(*channel)
  send_command("subscribe", *channel)
end

unsubscribe(*channel)

# File actioncable/lib/action_cable/subscription_adapter/redis.rb, line 221
def unsubscribe(*channel)
  send_command("unsubscribe", *channel)
end