  | ICountDownLatchCountDown Method  | 
 
                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.9.2
Syntaxabstract CountDown : unit -> unit 
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
                        
                        .
                    
 
                If the current count equals zero then nothing happens.
            
See Also