io.sphere.sdk.http.AsyncHttpClientAdapter Maven / Gradle / Ivy
package io.sphere.sdk.http;
import com.ning.http.client.AsyncHttpClient;
public interface AsyncHttpClientAdapter extends HttpClient {
static HttpClient of(final AsyncHttpClient asyncHttpClient) {
return AsyncHttpClientAdapterImpl.of(asyncHttpClient);
}
}