Class: Concurrent::JavaCountDownLatch
Relationships & Source Files | |
Inherits: | Object |
Defined in: | lib/concurrent-ruby/concurrent/atomic/java_count_down_latch.rb |
Overview
**Private Implementation:** This abstraction is a private, internal implementation detail. It should never be used directly.
A synchronization object that allows one thread to wait on multiple other threads. The thread that will wait creates a CountDownLatch
and sets the initial value (normally equal to the number of other threads). The initiating thread passes the latch to the other threads then waits for the other threads by calling the #wait method. Each of the other threads calls #count_down when done with its work. When the latch counter reaches zero the waiting thread is unblocked and continues with its work. A CountDownLatch
can be used only once. Its value cannot be reset.
Class Method Summary
-
.new(count = 1) ⇒ JavaCountDownLatch
constructor
Create a new
CountDownLatch
with the initial #count.
Instance Method Summary
-
#count ⇒ Fixnum
The current value of the counter.
-
#count_down
Signal the latch to decrement the counter.
-
#wait(timeout = nil) ⇒ Boolean
Block on the latch until the counter reaches zero or until
timeout
is reached.
Constructor Details
.new(count = 1) ⇒ JavaCountDownLatch
Create a new CountDownLatch
with the initial #count.
# File 'lib/concurrent-ruby/concurrent/atomic/java_count_down_latch.rb', line 12
def initialize(count = 1) Utility::NativeInteger.ensure_integer_and_bounds(count) Utility::NativeInteger.ensure_positive(count) @latch = java.util.concurrent.CountDownLatch.new(count) end
Instance Method Details
#count ⇒ Fixnum
The current value of the counter.
# File 'lib/concurrent-ruby/concurrent/atomic/java_count_down_latch.rb', line 38
def count @latch.getCount end
#count_down
Signal the latch to decrement the counter. Will signal all blocked threads when the #count reaches zero.
# File 'lib/concurrent-ruby/concurrent/atomic/java_count_down_latch.rb', line 33
def count_down @latch.countDown end
#wait(timeout = nil) ⇒ Boolean
Block on the latch until the counter reaches zero or until timeout
is reached.
# File 'lib/concurrent-ruby/concurrent/atomic/java_count_down_latch.rb', line 19
def wait(timeout = nil) result = nil if timeout.nil? Synchronization::JRuby.sleep_interruptibly { @latch.await } result = true else Synchronization::JRuby.sleep_interruptibly do result = @latch.await(1000 * timeout, java.util.concurrent.TimeUnit::MILLISECONDS) end end result end