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