blob: 1120956c48a7a251eeb9f4af3a4d84c08a8bdf70 [file] [log] [blame]
package org.testng.internal.thread;
/**
* Reduced interface to mimic PooledExecutor.
*
* @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;
}