Package org.apache.http.conn

Examples of org.apache.http.conn.ClientConnectionManager.closeIdleConnections()


    public static void closeIdleConnections(CachedBoxClient cachedBoxClient) {
        @SuppressWarnings("deprecation")
        final ClientConnectionManager connectionManager = cachedBoxClient.getClientConnectionManager();
        if (connectionManager != null) {
            // close all idle connections
            connectionManager.closeIdleConnections(1, TimeUnit.MILLISECONDS);
        }
    }

    public static void shutdownBoxClient(BoxConfiguration configuration, CachedBoxClient cachedBoxClient)
        throws BoxServerException, BoxRestException, AuthFatalFailureException {
View Full Code Here


    public static void closeIdleConnections(CachedBoxClient cachedBoxClient) {
        @SuppressWarnings("deprecation")
        final ClientConnectionManager connectionManager = cachedBoxClient.getClientConnectionManager();
        if (connectionManager != null) {
            // close all idle connections
            connectionManager.closeIdleConnections(1, TimeUnit.MILLISECONDS);
        }
    }

    public static void shutdownBoxClient(BoxConfiguration configuration, CachedBoxClient cachedBoxClient)
        throws BoxServerException, BoxRestException, AuthFatalFailureException {
View Full Code Here

        try {
          while (true) {
            synchronized (this) {
              wait(5000);
              connection.closeExpiredConnections();
              connection.closeIdleConnections(30,
                  TimeUnit.SECONDS);
            }
          }
        } catch (final InterruptedException ex) {
        }
View Full Code Here

                                }

                                wait(timePeriodCleanUpIdleConnection);
                                // Close expired connections
                                connMan.closeExpiredConnections();
                                connMan.closeIdleConnections(idleTimeThreshold, TimeUnit.SECONDS);
                            }
                        }
                    }
                    catch (InterruptedException ex) {
                        // terminate
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.