blob: 8cad920150d6bbcc4386e475cfae889892e66ed4 [file] [log] [blame]
package org.testng.internal.thread;
import java.util.List;
/**
* Reduced interface to mimic <code>ExecutorService</code>.
*
* @author <a href='mailto:the_mindstorm@evolva.ro'>Alexandru Popescu</a>
*/
public interface IPooledExecutor {
void execute(Runnable run);
void shutdown();
void awaitTermination(long timeout) throws InterruptedException;
/**
* @return
*/
boolean isTerminated();
}