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

10 lines
194 B
Java

package org.testng.internal.thread;
public interface ICountDown {
void await() throws InterruptedException;
boolean await(long j) throws InterruptedException;
void countDown();
}