Method: Redis::Commands::Pubsub#unsubscribe
- Defined in:
- lib/redis/commands/pubsub.rb
#unsubscribe(*channels) ⇒ Object
Stop listening for messages posted to the given channels.
27 28 29 |
# File 'lib/redis/commands/pubsub.rb', line 27 def unsubscribe(*channels) _subscription(:unsubscribe, 0, channels, nil) end |