Package org.apache.http.impl.nio.client
Interface InternalClientExec
-
- All Known Implementing Classes:
MainClientExec
interface InternalClientExec
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidconsumeContent(InternalState state, org.apache.http.nio.ContentDecoder decoder, org.apache.http.nio.IOControl ioctrl)org.apache.http.HttpRequestgenerateRequest(InternalState state, AbstractClientExchangeHandler handler)voidprepare(org.apache.http.HttpHost target, org.apache.http.HttpRequest original, InternalState state, AbstractClientExchangeHandler handler)voidproduceContent(InternalState state, org.apache.http.nio.ContentEncoder encoder, org.apache.http.nio.IOControl ioctrl)voidrequestCompleted(InternalState state, AbstractClientExchangeHandler handler)voidresponseCompleted(InternalState state, AbstractClientExchangeHandler handler)voidresponseReceived(org.apache.http.HttpResponse response, InternalState state, AbstractClientExchangeHandler handler)
-
-
-
Method Detail
-
prepare
void prepare(org.apache.http.HttpHost target, org.apache.http.HttpRequest original, InternalState state, AbstractClientExchangeHandler handler) throws java.io.IOException, org.apache.http.HttpException- Throws:
java.io.IOExceptionorg.apache.http.HttpException
-
generateRequest
org.apache.http.HttpRequest generateRequest(InternalState state, AbstractClientExchangeHandler handler) throws java.io.IOException, org.apache.http.HttpException
- Throws:
java.io.IOExceptionorg.apache.http.HttpException
-
produceContent
void produceContent(InternalState state, org.apache.http.nio.ContentEncoder encoder, org.apache.http.nio.IOControl ioctrl) throws java.io.IOException
- Throws:
java.io.IOException
-
requestCompleted
void requestCompleted(InternalState state, AbstractClientExchangeHandler handler)
-
responseReceived
void responseReceived(org.apache.http.HttpResponse response, InternalState state, AbstractClientExchangeHandler handler) throws java.io.IOException, org.apache.http.HttpException- Throws:
java.io.IOExceptionorg.apache.http.HttpException
-
consumeContent
void consumeContent(InternalState state, org.apache.http.nio.ContentDecoder decoder, org.apache.http.nio.IOControl ioctrl) throws java.io.IOException
- Throws:
java.io.IOException
-
responseCompleted
void responseCompleted(InternalState state, AbstractClientExchangeHandler handler) throws java.io.IOException, org.apache.http.HttpException
- Throws:
java.io.IOExceptionorg.apache.http.HttpException
-
-