Example usage for org.apache.http.impl.nio.client CloseableHttpAsyncClient subclass-usage

List of usage examples for org.apache.http.impl.nio.client CloseableHttpAsyncClient subclass-usage

Introduction

In this page you can find the example usage for org.apache.http.impl.nio.client CloseableHttpAsyncClient subclass-usage.

Usage

From source file co.paralleluniverse.fibers.httpasyncclient.FiberCloseableHttpAsyncClient.java

public class FiberCloseableHttpAsyncClient extends CloseableHttpAsyncClient {
    private final CloseableHttpAsyncClient client;

    private FiberCloseableHttpAsyncClient(CloseableHttpAsyncClient client) {
        this.client = client;
    }

From source file com.polydeucesys.eslogging.testutils.MockClosableHttpAsyncClient.java

/**
 * Copyright (c) 2016 Polydeuce-Sys Ltd
 *
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
 * associated documentation files (the "Software"), to deal in the Software without restriction, including

From source file org.callimachusproject.server.helpers.AutoClosingAsyncClient.java

public class AutoClosingAsyncClient extends CloseableHttpAsyncClient {
    final Logger logger = LoggerFactory.getLogger(AutoClosingAsyncClient.class);
    private final CachingHttpAsyncClient client;
    private final ManagedHttpCacheStorage storage;
    private int numberOfClientCalls = 0;
    private boolean running;