Click or drag to resize

CountDownLatch Class

[Missing <summary> documentation for "T:com.espertech.esper.compat.threading.CountDownLatch"]

Inheritance Hierarchy
SystemObject
  com.espertech.esper.compat.threadingCountDownLatch

Namespace:  com.espertech.esper.compat.threading
Assembly:  NEsper.Compat (in NEsper.Compat.dll) Version: 8.0.0.0
Syntax
C#
public class CountDownLatch

The CountDownLatch type exposes the following members.

Constructors
  NameDescription
Public methodCountDownLatch
Initializes a new instance of the CountDownLatch class
Top
Properties
  NameDescription
Public propertyCount
Returns the number of outstanding latches that have not been removed.
Top
Methods
  NameDescription
Public methodAwait
Awaits this instance.
Public methodAwait(TimeSpan)
Waits for the latch to be released for up to the specified amount of time. If the timeout expires a TimeoutException is thrown.
Public methodAwait(Int32, TimeUnit)
Public methodCountDown
Decrements the latch count.
Top
See Also