org.testng.internal.thread.IExecutor 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 an ExecutorService.
*
* @author Alexandru Popescu
*/
public interface IExecutor {
IFutureResult submitRunnable(Runnable runnable);
void shutdown();
boolean awaitTermination(long timeout);
void stopNow();
StackTraceElement[][] getStackTraces();
}