java.util.concurrent.CountDownLatch A synchronization aid that allows one or more threads to wait until a set of operations being performed in other threads completes. <p>A <tt>CountDownLatch</tt> is initialized with a given <em>count</em>. The {@link #await await} methods block until the current {@li ...