HttpAsyncClientBuilder: Make IOReactor exception callback configurable
This commit is contained in:
parent
3f09dbee5a
commit
f597588198
|
@ -209,6 +209,7 @@ public class HttpAsyncClientBuilder {
|
|||
private AsyncClientConnectionManager connManager;
|
||||
private boolean connManagerShared;
|
||||
private IOReactorConfig ioReactorConfig;
|
||||
private Callback<Exception> ioReactorExceptionCallback;
|
||||
private Http1Config h1Config;
|
||||
private H2Config h2Config;
|
||||
private CharCodingConfig charCodingConfig;
|
||||
|
@ -316,6 +317,16 @@ public class HttpAsyncClientBuilder {
|
|||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the callback that will be invoked when the client's IOReactor encounters an uncaught exception.
|
||||
*
|
||||
* @since 5.1
|
||||
*/
|
||||
public final HttpAsyncClientBuilder setIoReactorExceptionCallback(final Callback<Exception> ioReactorExceptionCallback) {
|
||||
this.ioReactorExceptionCallback = ioReactorExceptionCallback;
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets {@link CharCodingConfig} configuration.
|
||||
*/
|
||||
|
@ -932,7 +943,7 @@ public class HttpAsyncClientBuilder {
|
|||
ioReactorConfig != null ? ioReactorConfig : IOReactorConfig.DEFAULT,
|
||||
threadFactory != null ? threadFactory : new DefaultThreadFactory("httpclient-dispatch", true),
|
||||
LoggingIOSessionDecorator.INSTANCE,
|
||||
LoggingExceptionCallback.INSTANCE,
|
||||
ioReactorExceptionCallback != null ? ioReactorExceptionCallback : LoggingExceptionCallback.INSTANCE,
|
||||
null,
|
||||
new Callback<IOSession>() {
|
||||
|
||||
|
|
Loading…
Reference in New Issue