Example usage for org.apache.http.nio.client.util HttpAsyncClientUtils closeQuietly

List of usage examples for org.apache.http.nio.client.util HttpAsyncClientUtils closeQuietly

Introduction

In this page you can find the example usage for org.apache.http.nio.client.util HttpAsyncClientUtils closeQuietly.

Prototype

public static void closeQuietly(final CloseableHttpAsyncClient httpAsyncClient) 

Source Link

Document

Unconditionally close a httpAsyncClient.

Usage

From source file:org.apache.camel.component.olingo2.api.impl.Olingo2AppImpl.java

@Override
public void close() {
    HttpAsyncClientUtils.closeQuietly(client);
}