Method: Redis::Commands::Pubsub#punsubscribe

Defined in:
lib/redis/commands/pubsub.rb

#punsubscribe(*channels) ⇒ Object

Stop listening for messages posted to channels matching the given patterns. See the Redis Server PUNSUBSCRIBE documentation for further details



49
50
51
# File 'lib/redis/commands/pubsub.rb', line 49

def punsubscribe(*channels)
  _subscription(:punsubscribe, 0, channels, nil)
end