All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.testng.internal.thread.ICountDown Maven / Gradle / Ivy

There is a newer version: 7.10.2
Show newest version
package org.testng.internal.thread;

/**
 * Reduced interface to mimic a CountDownLatch.
 *
 * @author Alexandru Popescu
 */
public interface ICountDown {
   void await() throws InterruptedException;

   boolean await(long timeout) throws InterruptedException;

   void countDown();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy