2026-03-17 13:31:18 -07:00

12 lines
226 B
Java

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