All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.testng.internal.thread.IExecutor Maven / Gradle / Ivy

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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy