org.testng.internal.thread.IPooledExecutor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testng Show documentation
Show all versions of testng Show documentation
Testing framework for Java
package org.testng.internal.thread;
/**
* Reduced interface to mimic ExecutorService
.
*
* @author Alexandru Popescu
*/
public interface IPooledExecutor {
void execute(Runnable run);
void shutdown();
void awaitTermination(long timeout) throws InterruptedException;
/**
* @return
*/
boolean isTerminated();
}