package org.testng.internal.thread; public interface IPooledExecutor { void awaitTermination(long j) throws InterruptedException; void execute(Runnable runnable); boolean isTerminated(); void shutdown(); }