org.apache.http.nio.client.util
Class HttpAsyncClientUtils

java.lang.Object
  extended by org.apache.http.nio.client.util.HttpAsyncClientUtils

public class HttpAsyncClientUtils
extends Object

Static helpers for dealing with HttpAsyncClient.


Method Summary
static void closeQuietly(CloseableHttpAsyncClient httpAsyncClient)
          Unconditionally close a httpAsyncClient.
static void closeQuietly(HttpAsyncClient httpAsyncClient)
          Deprecated. 
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

closeQuietly

public static void closeQuietly(CloseableHttpAsyncClient httpAsyncClient)
Unconditionally close a httpAsyncClient. Shuts down the underlying connection manager and releases the resources.

Example Code:

 HttpAsyncClient httpAsyncClient = null;
 try {
   httpAsyncClient = ...;
 } catch (Exception e) {
   // error handling
 } finally {
   HttpAsyncClientUtils.closeQuietly(httpAsyncClient);
 }
 

Parameters:
httpAsyncClient - the HttpAsyncClient to close, may be null or already closed.

closeQuietly

@Deprecated
public static void closeQuietly(HttpAsyncClient httpAsyncClient)
Deprecated. 



Copyright © 2010-2013 The Apache Software Foundation. All Rights Reserved.