io.sphere.sdk.http.ApacheHttpClientAdapter Maven / Gradle / Ivy
package io.sphere.sdk.http;
import org.apache.http.impl.nio.client.CloseableHttpAsyncClient;
/**
* Adapter to use a {@link CloseableHttpAsyncClient} as {@link HttpClient}.
*
* For more information about HttpComponents AsyncClient use their webpage.
*/
public interface ApacheHttpClientAdapter extends HttpClient {
static HttpClient of(final CloseableHttpAsyncClient client) {
return ApacheHttpClientAdapterImpl.of(client);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy