com.rollbar.reactivestreams.notifier.sender.http.ApacheAsyncHttpClientFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rollbar-reactive-streams Show documentation
Show all versions of rollbar-reactive-streams Show documentation
For connecting your applications built on the JVM to Rollbar for Error Reporting
package com.rollbar.reactivestreams.notifier.sender.http;
/**
* Factory class for {@link ApacheAsyncHttpClient}.
*/
class ApacheAsyncHttpClientFactory implements HttpClientFactory {
@Override
public AsyncHttpClient build() {
return new ApacheAsyncHttpClient.Builder().build();
}
}