KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > java > util > concurrent > locks > AbstractQueuedSynchronizer > Top Examples

  • 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 ...
Popular Tags