Example usage for org.apache.http.nio.client HttpAsyncClient interface-usage

List of usage examples for org.apache.http.nio.client HttpAsyncClient interface-usage

Introduction

In this page you can find the example usage for org.apache.http.nio.client HttpAsyncClient interface-usage.

Usage

From source file com.clxcommunications.xms.ApiHttpAsyncClient.java

/**
 * An asynchronous HTTP client used in API connections. It is configured in a
 * way suitable for communicating with XMS and is therefore most applicable for
 * communicating with a single HTTP host.
 * <p>
 * It is in most cases sufficient to let {@link ApiConnection} create and manage

From source file org.apache.http.impl.client.cache.CachingHttpAsyncClient.java

@ThreadSafe // So long as the responseCache implementation is threadsafe
public class CachingHttpAsyncClient implements HttpAsyncClient {

    private final static boolean SUPPORTS_RANGE_AND_CONTENT_RANGE_HEADERS = false;

    private final AtomicLong cacheHits = new AtomicLong();

From source file org.apache.http.impl.nio.client.AbstractHttpAsyncClient.java

@Deprecated
public abstract class AbstractHttpAsyncClient implements HttpAsyncClient {

    private final Log log = LogFactory.getLog(getClass());
    private final ClientAsyncConnectionManager connmgr;
    private final Queue<HttpAsyncRequestExecutionHandler<?>> queue;