class Redis

def subscribe(*channels, &block)

Listen for messages published to the given channels.
def subscribe(*channels, &block)
  synchronize do
    subscription(:subscribe, channels, block)
  end
end