All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.sphere.sdk.http.ApacheHttpClientAdapter Maven / Gradle / Ivy

There is a newer version: 2.16.0
Show newest version
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