class Redis

def brpop(*args)

Remove and get the last element in a list, or block until one is available.
def brpop(*args)
  synchronize do
    @client.call_without_timeout(:brpop, *args)
  end
end