All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mashape.unirest.http.async.utils.AsyncIdleConnectionMonitorThread Maven / Gradle / Ivy

package com.mashape.unirest.http.async.utils;

import java.util.concurrent.TimeUnit;

import org.apache.http.impl.nio.conn.PoolingNHttpClientConnectionManager;

public class AsyncIdleConnectionMonitorThread extends Thread {

	private final PoolingNHttpClientConnectionManager connMgr;

	public AsyncIdleConnectionMonitorThread(PoolingNHttpClientConnectionManager connMgr) {
		super();
		super.setDaemon(true);
		this.connMgr = connMgr;
	}

	@Override
	public void run() {
		try {
			while (!Thread.currentThread().isInterrupted()) {
				synchronized (this) {
					wait(5000);
					// Close expired connections
					connMgr.closeExpiredConnections();
					// Optionally, close connections
					// that have been idle longer than 30 sec
					connMgr.closeIdleConnections(30, TimeUnit.SECONDS);
				}
			}
		} catch (InterruptedException ex) {
			// terminate
		}
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy