Package io.debezium.util
Class BoundedConcurrentHashMap.HashIterator
- java.lang.Object
-
- io.debezium.util.BoundedConcurrentHashMap.HashIterator
-
- Direct Known Subclasses:
BoundedConcurrentHashMap.EntryIterator,BoundedConcurrentHashMap.KeyIterator,BoundedConcurrentHashMap.ValueIterator
- Enclosing class:
- BoundedConcurrentHashMap<K,V>
abstract class BoundedConcurrentHashMap.HashIterator extends Object
-
-
Field Summary
Fields Modifier and Type Field Description (package private) BoundedConcurrentHashMap.HashEntry<K,V>[]currentTable(package private) BoundedConcurrentHashMap.HashEntry<K,V>lastReturned(package private) BoundedConcurrentHashMap.HashEntry<K,V>nextEntry(package private) intnextSegmentIndex(package private) intnextTableIndex
-
Constructor Summary
Constructors Constructor Description HashIterator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description (package private) voidadvance()booleanhasMoreElements()booleanhasNext()(package private) BoundedConcurrentHashMap.HashEntry<K,V>nextEntry()voidremove()
-
-
-
Field Detail
-
nextSegmentIndex
int nextSegmentIndex
-
nextTableIndex
int nextTableIndex
-
currentTable
BoundedConcurrentHashMap.HashEntry<K,V>[] currentTable
-
nextEntry
BoundedConcurrentHashMap.HashEntry<K,V> nextEntry
-
lastReturned
BoundedConcurrentHashMap.HashEntry<K,V> lastReturned
-
-
Method Detail
-
hasMoreElements
public boolean hasMoreElements()
-
advance
final void advance()
-
hasNext
public boolean hasNext()
-
nextEntry
BoundedConcurrentHashMap.HashEntry<K,V> nextEntry()
-
remove
public void remove()
-
-