Using HTTP Pipelining with Jetty HTTPClient

Posted by jrogi on Stack Overflow See other posts from Stack Overflow or by jrogi
Published on 2010-05-05T06:02:52Z Indexed on 2010/05/05 6:08 UTC
Read the original article Hit count: 334

Filed under:
|
|

I'm trying to figure out how to use HTTPClient (org.eclipse.jetty.client.HttpClient) so it will pipeline HTTP Request.

I've tried to create some HttpExchange instances and applying the send() method for each, in an asynchronous mode, but each HTTP request has waited for it response before the next request was sent.

Can you please supply a code snippet for this case?

© Stack Overflow or respective owner

Related posts about java

Related posts about jetty