ICountDownLatchCountDown Method Hazelcast .Net Client Class Library
Decrements the count of the latch, releasing all waiting threads if the count reaches zero.

Namespace: Hazelcast.Core
Assembly: Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.6.1.0
Syntax

void CountDown()
Remarks

Decrements the count of the latch, releasing all waiting threads if the count reaches zero.

If the current count is greater than zero then it is decremented. If the new count is zero:

  • All waiting threads are re-enabled for thread scheduling purposes; and
  • Countdown owner is set to
    null
    .

If the current count equals zero then nothing happens.

See Also

Reference