Interface GridCacheCountDownLatchEx
-
- All Superinterfaces:
AutoCloseable,Closeable,GridCacheRemovable,IgniteCountDownLatch
- All Known Implementing Classes:
GridCacheCountDownLatchImpl
public interface GridCacheCountDownLatchEx extends IgniteCountDownLatch, GridCacheRemovable
Grid cache count down latch ('Ex'stands for external).
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GridCacheInternalKeykey()Get current count down latch key.voidonUpdate(int cnt)Callback to notify latch on changes.-
Methods inherited from interface org.apache.ignite.internal.processors.datastructures.GridCacheRemovable
needCheckNotRemoved, onRemoved, restart, suspend
-
Methods inherited from interface org.apache.ignite.IgniteCountDownLatch
autoDelete, await, await, await, close, count, countDown, countDown, countDownAll, initialCount, name, removed
-
-
-
-
Method Detail
-
key
GridCacheInternalKey key()
Get current count down latch key.- Returns:
- Latch key.
-
onUpdate
void onUpdate(int cnt)
Callback to notify latch on changes.- Parameters:
cnt- New count.
-
-