12 lines
226 B
Java
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();
|
|
}
|