Java.Util.Concurrent.CountDownLatch: Method Members

The methods of Java.Util.Concurrent.CountDownLatch are listed below. For a list of all members, see the CountDownLatch Members list.

See Also: Inherited members from Java.Lang.Object

Public Methods

Await()
Causes the current thread to wait until the latch has counted down to zero, unless the thread is Java.Lang.Thread.Interrupt.
Await(long, TimeUnit) : bool
Causes the current thread to wait until the latch has counted down to zero, unless the thread is Java.Lang.Thread.Interrupt, or the specified waiting time elapses.
AwaitAsync() : System.Threading.Tasks.Task
Documentation for this section has not yet been entered.
AwaitAsync(long, TimeUnit) : System.Threading.Tasks.Task<bool>
Documentation for this section has not yet been entered.
CountDown()
Decrements the count of the latch, releasing all waiting threads if the count reaches zero.