Package com.google.code.http4j

Examples of com.google.code.http4j.RequestExecutor


    return this;
  }
 
  protected Response submit(Request request, Metrics parentMetrics) throws InterruptedException,
      IOException, URISyntaxException {
    RequestExecutor executor = new BasicRequestExecutor(connectionManager, cookieCache, responseParser);
    Response response = executor.execute(request);
    LOGGER.debug("Metrics for {} : \r\n{}", request.getURI(), response.getMetrics());
    response.getMetrics().setParentMetrics(parentMetrics);
    return postProcess(request, response);
  }
View Full Code Here

TOP

Related Classes of com.google.code.http4j.RequestExecutor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.