blob: 6a95e38bd934eb9d0c7e8b90cd539406df339e59 [file] [log] [blame]
package org.testng.internal.thread;
/**
* Reduced interface to mimic Future.
*
* @author <a href='mailto:the_mindstorm@evolva.ro'>Alexandru Popescu</a>
*/
public interface IFutureResult {
Object get() throws InterruptedException, ThreadExecutionException;
}