Method: Concurrent::CountDownLatch#count_down
- Defined in:
- lib/concurrent-ruby/concurrent/atomic/count_down_latch.rb
#count_down ⇒ Object
Signal the latch to decrement the counter. Will signal all blocked threads when the ‘count` reaches zero.
98 99 |
# File 'lib/concurrent-ruby/concurrent/atomic/count_down_latch.rb', line 98 class CountDownLatch < CountDownLatchImplementation end |