reta opened a new pull request #353:
URL: https://github.com/apache/httpcomponents-client/pull/353
Pass HttpContext to AsyncClientConnectionOperator, change is non-breaking by
introducing two default methods:
```
default void upgrade(ManagedAsyncClientConnection conn, HttpHost host,
Object attachment, HttpContext context) {
upgrade(conn, host, attachment);
}
default Future<ManagedAsyncClientConnection> connect(
ConnectionInitiator connectionInitiator,
HttpHost host,
SocketAddress localAddress,
Timeout connectTimeout,
Object attachment,
FutureCallback<ManagedAsyncClientConnection> callback,
HttpContext context) {
return connect(connectionInitiator, host, localAddress,
connectTimeout,
attachment, callback);
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]