io.tracee.contextlogger.connector.http.AsyncHttpClientProvider 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 interface AsyncHttpClientProvider {
AsyncHttpClient provideHttpClient(AsyncHttpClientConfig config);
}