io.tracee.contextlogger.connector.http.SimpleAsyncHttpProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of connector-http Show documentation
Show all versions of connector-http Show documentation
Please refer to https://github.com/tracee/contextlogger.
The newest version!
package io.tracee.contextlogger.connector.http;
import com.ning.http.client.AsyncHttpClient;
import com.ning.http.client.AsyncHttpClientConfig;
public class SimpleAsyncHttpProvider implements AsyncHttpClientProvider {
@Override
public final AsyncHttpClient provideHttpClient(AsyncHttpClientConfig config) {
return new AsyncHttpClient(config);
}
}