private final HttpClientConnectionManager manager;
private Integer waitTime;
private Integer idleConTime;
private volatile boolean shutdown = true;
public IdleConnectionEvictor(HttpClientConnectionManager manager, Integer waitTime, Integer idleConTime) {
this.manager = manager;
this.waitTime = waitTime;
this.idleConTime = idleConTime;
this.start();
}
@Override
public void run() {
try {
if (shutdown) {
synchronized (this) {
wait(waitTime);
manager.closeIdleConnections(idleConTime, TimeUnit.SECONDS);
// 关闭失效的连接
manager.closeExpiredConnections();
}
}
} catch (Exception e) {
}
}
@PreDestroy
public void shutdown() {
shutdown = false;
synchronized (this) {
notifyAll();
}
}
}
Linux公社的RSS地址:https://www.linuxidc.com/rssFeed.aspx