Class BooleanLatch

All Implemented Interfaces:
Serializable

public class BooleanLatch extends AbstractQueuedSynchronizer
Acts like a CountDownLatch except that it only requires a single signal to fire. Because a latch is non-exclusive, it uses the shared acquire and release methods.
Author:
Jerome Dochez
See Also: