Package org.infinispan.distribution.util
Class ReadOnlySegmentAwareIterator<E>
- java.lang.Object
-
- org.infinispan.distribution.util.ReadOnlySegmentAwareIterator<E>
-
- All Implemented Interfaces:
Iterator<E>
- Direct Known Subclasses:
ReadOnlySegmentAwareEntryIterator
public class ReadOnlySegmentAwareIterator<E> extends Object implements Iterator<E>
Iterator implementation that shows a read only view of the provided iterator by only allowing values that map to a given segment using the provided consistent hash.This iterator is used with the other various SegmentAware Collections such as
ReadOnlySegmentAwareCollection- Since:
- 7.2
- Author:
- wburns
-
-
Field Summary
Fields Modifier and Type Field Description protected IntSetallowedSegmentsprotected ConsistentHashchprotected Iterator<E>iterprotected Enext
-
Constructor Summary
Constructors Constructor Description ReadOnlySegmentAwareIterator(Iterator<E> iter, ConsistentHash ch, IntSet allowedSegments)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected EfindNext()booleanhasNext()Enext()voidremove()protected booleanvalueAllowed(Object obj)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.Iterator
forEachRemaining
-
-
-
-
Field Detail
-
ch
protected final ConsistentHash ch
-
allowedSegments
protected final IntSet allowedSegments
-
next
protected E next
-
-
Constructor Detail
-
ReadOnlySegmentAwareIterator
public ReadOnlySegmentAwareIterator(Iterator<E> iter, ConsistentHash ch, IntSet allowedSegments)
-
-