Method: Redis::Distributed#psubscribe

Defined in:
lib/redis/distributed.rb

#psubscribe(*channels, &block) ⇒ Object

Listen for messages published to channels matching the given patterns. See the [Redis Server PSUBSCRIBE documentation](redis.io/docs/latest/commands/psubscribe/) for further details

Raises:

  • (NotImplementedError)


953
954
955
# File 'lib/redis/distributed.rb', line 953

def psubscribe(*channels, &block)
  raise NotImplementedError
end