public interface ICountDownLatch extends DistributedObject
java.util.concurrent.CountDownLatch
.
ICountDownLatch is a cluster-wide synchronization aid that allows one or more threads to wait until a set of operations being performed in other threads completes.
There are a few differences compared to the ICountDownLatch
:
trySetCount(int)
after a countdown
has finished but not during an active count. This allows the same latch instance to be reused.
ICountDownLatch
under split-brain scenarios should be taken into account when using this
data structure. During a split, each partitioned cluster will either create a brand new and uninitialised (zero'd)
ICountDownLatch
or it will continue to use the primary or back-up version. For example
it may be possible for both the back-up and primary to be resident in one cluster partition and for another to
be created as new in another side. In any of these cases the counter in the respective ICountDownLatch
may diverge.
When the split heals, Hazelcast performs a default largest cluster wins resolution or where clusters sizes are equal a random winner is chosen. This can lead to situations where the is left in an unpredictable state, and a countdown to zero may never be achieved.
If required, when using ICountDownLatch
as an orchestration mechanism you should assess the state of the
orchestration outcome and the associated countdown actors after a split-brain heal has taken place, and take steps to
re-orchestrate if appropriate.
Supports Quorum QuorumConfig
since 3.10 in cluster versions 3.10 and higher.
Modifier and Type | Method and Description |
---|---|
boolean |
await(long timeout,
TimeUnit unit)
Causes the current thread to wait until the latch has counted down to
zero, or an exception is thrown, or the specified waiting time elapses.
|
void |
countDown()
Decrements the count of the latch, releasing all waiting threads if
the count reaches zero.
|
int |
getCount()
Returns the current count.
|
boolean |
trySetCount(int count)
Sets the count to the given value if the current count is zero.
|
destroy, getName, getPartitionKey, getServiceName
boolean await(long timeout, TimeUnit unit) throws InterruptedException
If the current count is zero then this method returns immediately
with the value true
.
If the current count is greater than zero, then the current thread becomes disabled for thread scheduling purposes and lies dormant until one of five things happen:
countDown()
method,
true
.
If the current thread:
InterruptedException
is thrown and the current thread's
interrupted status is cleared.
If the specified waiting time elapses then the value false
is returned. If the time is less than or equal to zero, the method
will not wait at all.
timeout
- the maximum time to waitunit
- the time unit of the timeout
argumenttrue
if the count reached zero, false
if the waiting time elapsed before the count reached zeroInterruptedException
- if the current thread is interruptedIllegalStateException
- if the Hazelcast instance is shutdown while waitingNullPointerException
- if unit is nullvoid countDown()
If the current count is greater than zero, then it is decremented. If the new count is zero:
null
.
int getCount()
boolean trySetCount(int count)
If count is not zero, then this method does nothing and returns false
.
count
- the number of times countDown()
must be invoked
before threads can pass through await(long, java.util.concurrent.TimeUnit)
true
if the new count was set, false
if the current count is not zeroIllegalArgumentException
- if count
is negativeCopyright © 2018 Hazelcast, Inc.. All rights reserved.