Method: Redis::Distributed#punsubscribe

Defined in:
lib/redis/distributed.rb

#punsubscribe(*channels) ⇒ Object

Stop listening for messages posted to channels matching the given patterns. See the [Redis Server PUNSUBSCRIBE documentation](redis.io/docs/latest/commands/punsubscribe/) for further details

Raises:

  • (NotImplementedError)


961
962
963
# File 'lib/redis/distributed.rb', line 961

def punsubscribe(*channels)
  raise NotImplementedError
end