Class GridCacheCountDownLatchImpl
- java.lang.Object
-
- org.apache.ignite.internal.processors.datastructures.AtomicDataStructureProxy<GridCacheCountDownLatchValue>
-
- org.apache.ignite.internal.processors.datastructures.GridCacheCountDownLatchImpl
-
- All Implemented Interfaces:
Closeable,Externalizable,Serializable,AutoCloseable,IgniteCountDownLatch,IgniteChangeGlobalStateSupport,GridCacheCountDownLatchEx,GridCacheRemovable
public final class GridCacheCountDownLatchImpl extends AtomicDataStructureProxy<GridCacheCountDownLatchValue> implements GridCacheCountDownLatchEx, IgniteChangeGlobalStateSupport, Externalizable
Cache count down latch implementation.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description GridCacheCountDownLatchImpl()Empty constructor required byExternalizable.GridCacheCountDownLatchImpl(String name, int initCnt, boolean autoDel, GridCacheInternalKey key, IgniteInternalCache<GridCacheInternalKey,GridCacheCountDownLatchValue> latchView)Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanautoDelete()GetsautoDeleteflag.voidawait()Causes the current thread to wait until the latch has counted down to zero, unless current thread is interrupted.booleanawait(long timeout)Causes the current thread to wait until the latch has counted down to zero, unless the thread is interrupted, or the specified waiting time elapses.booleanawait(long timeout, TimeUnit unit)Causes the current thread to wait until the latch has counted down to zero, unless the thread is interrupted, or the specified waiting time elapses.voidclose()Removes this count down latch.intcount()Gets current count value of the latch.intcountDown()Decrements the count of the latch, releasing all waiting threads on all nodes if the count reaches zero.intcountDown(int val)Decreases the count of the latch using passed in value, releasing all waiting threads on all nodes if the count reaches zero.voidcountDownAll()Counts down this latch to zero, releasing all waiting threads on all nodes.intinitialCount()Gets initial count value of the latch.voidneedCheckNotRemoved()voidonUpdate(int cnt)Callback to notify latch on changes.voidreadExternal(ObjectInput in)StringtoString()voidwriteExternal(ObjectOutput out)-
Methods inherited from class org.apache.ignite.internal.processors.datastructures.AtomicDataStructureProxy
checkRemoved, checkRemovedAfterFail, invalidateLocalState, key, name, onActivate, onDeActivate, onRemoved, removed, restart, suspend
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.apache.ignite.internal.processors.datastructures.GridCacheCountDownLatchEx
key
-
Methods inherited from interface org.apache.ignite.internal.processors.datastructures.GridCacheRemovable
onRemoved, restart, suspend
-
Methods inherited from interface org.apache.ignite.internal.processors.cluster.IgniteChangeGlobalStateSupport
onActivate, onDeActivate
-
Methods inherited from interface org.apache.ignite.IgniteCountDownLatch
name, removed
-
-
-
-
Constructor Detail
-
GridCacheCountDownLatchImpl
public GridCacheCountDownLatchImpl()
Empty constructor required byExternalizable.
-
GridCacheCountDownLatchImpl
public GridCacheCountDownLatchImpl(String name, int initCnt, boolean autoDel, GridCacheInternalKey key, IgniteInternalCache<GridCacheInternalKey,GridCacheCountDownLatchValue> latchView)
Constructor.- Parameters:
name- Latch name.initCnt- Initial count.autoDel- Auto delete flag.key- Latch key.latchView- Latch projection.
-
-
Method Detail
-
count
public int count()
Gets current count value of the latch.- Specified by:
countin interfaceIgniteCountDownLatch- Returns:
- Current count.
-
initialCount
public int initialCount()
Gets initial count value of the latch.- Specified by:
initialCountin interfaceIgniteCountDownLatch- Returns:
- Initial count.
-
autoDelete
public boolean autoDelete()
GetsautoDeleteflag. If this flag istruelatch is removed from cache when it has been counted down to 0.- Specified by:
autoDeletein interfaceIgniteCountDownLatch- Returns:
- Value of
autoDeleteflag.
-
await
public void await()
Causes the current thread to wait until the latch has counted down to zero, unless current thread is interrupted.If the current count of the latch is zero then this method returns immediately.
If the current count is greater than zero then the current thread becomes disabled for thread scheduling purposes and lies dormant until one of two things happen:
- The count reaches zero due to invocations of the
IgniteCountDownLatch.countDown()method on any node; or - Some other thread interrupts the current thread.
If the current thread:
- has its interrupted status set on entry to this method; or
- is interrupted while waiting,
IgniteInterruptedCheckedExceptionis thrown and the current thread's interrupted status is cleared.- Specified by:
awaitin interfaceIgniteCountDownLatch
- The count reaches zero due to invocations of the
-
await
public boolean await(long timeout, TimeUnit unit)Causes the current thread to wait until the latch has counted down to zero, unless the thread is interrupted, or the specified waiting time elapses.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 three things happen:
- The count reaches zero due to invocations of the
IgniteCountDownLatch.countDown()method on any node; or - Some other thread interrupts the current thread; or
- The specified waiting time elapses.
If the count reaches zero then the method returns with the value
true.If the current thread:
- has its interrupted status set on entry to this method; or
- is interrupted while waiting,
IgniteInterruptedCheckedExceptionis thrown and the current thread's interrupted status is cleared.If the specified waiting time elapses then the value
falseis returned. If the time is less than or equal to zero, the method will not wait at all.- Specified by:
awaitin interfaceIgniteCountDownLatch- Parameters:
timeout- The maximum time to wait.unit- The time unit of thetimeoutargument.- Returns:
Trueif the count reached zero andfalseif the waiting time elapsed before the count reached zero.
- The count reaches zero due to invocations of the
-
await
public boolean await(long timeout)
Causes the current thread to wait until the latch has counted down to zero, unless the thread is interrupted, or the specified waiting time elapses.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 three things happen:
- The count reaches zero due to invocations of the
IgniteCountDownLatch.countDown()method on any node; or - Some other thread interrupts the current thread; or
- The specified waiting time elapses.
If the count reaches zero then the method returns with the value
true.If the current thread:
- has its interrupted status set on entry to this method; or
- is interrupted while waiting,
IgniteInterruptedCheckedExceptionis thrown and the current thread's interrupted status is cleared.If the specified waiting time elapses then the value
falseis returned. If the time is less than or equal to zero, the method will not wait at all.- Specified by:
awaitin interfaceIgniteCountDownLatch- Parameters:
timeout- The maximum time to wait in milliseconds.- Returns:
Trueif the count reached zero andfalseif the waiting time elapsed before the count reached zero.
- The count reaches zero due to invocations of the
-
countDown
public int countDown()
Decrements the count of the latch, releasing all waiting threads on all nodes if the count reaches zero.If the current count is greater than zero then it is decremented. If the new count is zero then all waiting threads are re-enabled for thread scheduling purposes.
If the current count equals zero then nothing happens.
- Specified by:
countDownin interfaceIgniteCountDownLatch- Returns:
- Count after decrement.
-
countDown
public int countDown(int val)
Decreases the count of the latch using passed in value, releasing all waiting threads on all nodes if the count reaches zero.If the current count is greater than zero then it is decreased. If the new count is zero then all waiting threads are re-enabled for thread scheduling purposes.
If the current count equals zero then nothing happens.
- Specified by:
countDownin interfaceIgniteCountDownLatch- Parameters:
val- Value to decrease counter on.- Returns:
- Count after decreasing.
-
countDownAll
public void countDownAll()
Counts down this latch to zero, releasing all waiting threads on all nodes.If the current count equals zero then nothing happens.
- Specified by:
countDownAllin interfaceIgniteCountDownLatch
-
needCheckNotRemoved
public void needCheckNotRemoved()
- Specified by:
needCheckNotRemovedin interfaceGridCacheRemovable- Overrides:
needCheckNotRemovedin classAtomicDataStructureProxy<GridCacheCountDownLatchValue>
-
onUpdate
public void onUpdate(int cnt)
Callback to notify latch on changes.- Specified by:
onUpdatein interfaceGridCacheCountDownLatchEx- Parameters:
cnt- New count.
-
close
public void close()
Removes this count down latch.- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Specified by:
closein interfaceIgniteCountDownLatch
-
writeExternal
public void writeExternal(ObjectOutput out) throws IOException
- Specified by:
writeExternalin interfaceExternalizable- Throws:
IOException
-
readExternal
public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
- Specified by:
readExternalin interfaceExternalizable- Throws:
IOExceptionClassNotFoundException
-
-