Last week we had to write what a small specialized HTTP client that connects to a server and issues GET requests to fetch data. Simple enough. The only issue is that the data provider required us to use maximum one connection at any time, using HTTP pipelining to issue all the GET requests in the same connection and then block until they respond with new data. In practice this is not very com…