module Redis::Commands::Pubsub

def psubscribe_with_timeout(timeout, *channels, &block)

for further details
See the [Redis Server PSUBSCRIBE documentation](https://redis.io/docs/latest/commands/psubscribe/)
Throw a timeout error if there is no messages for a timeout period.
Listen for messages published to channels matching the given patterns.
def psubscribe_with_timeout(timeout, *channels, &block)
  _subscription(:psubscribe_with_timeout, timeout, channels, block)
end