blob: c672da0aade46d038578c1ad87713c7f02037781 [file] [log] [blame]
package org.testng.internal.thread;
/**
* Reduced interface to mimic a CountDownLatch.
*
* @author <a href='mailto:the_mindstorm@evolva.ro'>Alexandru Popescu</a>
*/
public interface ICountDown {
void await() throws InterruptedException;
boolean await(long timeout) throws InterruptedException;
void countDown();
}