1package org.tm.archive.net; 2 3public interface RequestController { 4 5 /** 6 * Best-effort cancellation of any outstanding requests. Will also release any resources held by 7 * the underlying request. 8 */ 9 void cancel(); 10}