org.apache.http.impl.execchain
Class MainClientExec
java.lang.Object
org.apache.http.impl.execchain.MainClientExec
- All Implemented Interfaces:
- ClientExecChain
@Immutable
public class MainClientExec
- extends java.lang.Object
- implements ClientExecChain
The last request executor in the HTTP request execution chain
that is responsible for execution of request / response
exchanges with the opposite endpoint.
This executor will automatically retry the request in case
of an authentication challenge by an intermediate proxy or
by the target server.
- Since:
- 4.3
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
MainClientExec
public MainClientExec(org.apache.http.protocol.HttpRequestExecutor requestExecutor,
HttpClientConnectionManager connManager,
org.apache.http.ConnectionReuseStrategy reuseStrategy,
org.apache.http.conn.ConnectionKeepAliveStrategy keepAliveStrategy,
AuthenticationStrategy targetAuthStrategy,
AuthenticationStrategy proxyAuthStrategy,
org.apache.http.client.UserTokenHandler userTokenHandler)
execute
public CloseableHttpResponse execute(org.apache.http.conn.routing.HttpRoute route,
HttpRequestWrapper request,
HttpClientContext context,
HttpExecutionAware execAware)
throws java.io.IOException,
org.apache.http.HttpException
- Description copied from interface:
ClientExecChain
- Executes th request either by transmitting it to the target server or
by passing it onto the next executor in the request execution chain.
- Specified by:
execute in interface ClientExecChain
- Parameters:
route - connection route.request - current request.context - current HTTP context.execAware - receiver of notifications of blocking I/O operations.
- Returns:
- HTTP response either received from the opposite endpoint
or generated locally.
- Throws:
java.io.IOException - in case of a I/O error.
(this type of exceptions are potentially recoverable).
org.apache.http.HttpException - in case of an HTTP protocol error
(usually this type of exceptions are non-recoverable).