Example usage for org.apache.http.nio.conn ManagedNHttpClientConnection shutdown

List of usage examples for org.apache.http.nio.conn ManagedNHttpClientConnection shutdown

Introduction

In this page you can find the example usage for org.apache.http.nio.conn ManagedNHttpClientConnection shutdown.

Prototype

void shutdown() throws IOException;

Source Link

Usage

From source file:org.apache.http.impl.nio.conn.CPoolEntry.java

public void shutdownConnection() throws IOException {
    final ManagedNHttpClientConnection conn = getConnection();
    conn.shutdown();
}