List of usage examples for org.apache.http.client.fluent Request abort
public void abort() throws UnsupportedOperationException
From source file:com.jaspersoft.studio.server.protocol.ConnectionManager.java
private synchronized static void clean() { for (Request r : requests.keySet()) { IProgressMonitor m = requests.get(r); if (m.isCanceled()) { r.abort(); requests.remove(r);//from www .ja v a 2 s. c o m } } }