module Redis::Commands::Pubsub

def ssubscribe_with_timeout(timeout, *channels, &block)

Throw a timeout error if there is no messages for a timeout period.
Listen for messages published to the given channels in a shard.
def ssubscribe_with_timeout(timeout, *channels, &block)
  _subscription(:ssubscribe_with_timeout, timeout, channels, block)
end