public HttpResponse receiveResponseHeader() throws HttpException, IOException {
   assertOpen();
   HttpResponse response = this.responseParser.parse();
   if (response.getStatusLine().getStatusCode() >= 200) {
     this.metrics.incrementResponseCount();
   }
   return response;
 }