Class GridCacheIterator<K,V,T>
- java.lang.Object
-
- org.apache.ignite.internal.processors.cache.GridCacheIterator<K,V,T>
-
- All Implemented Interfaces:
Serializable,Iterator<T>,GridSerializableIterator<T>
public class GridCacheIterator<K,V,T> extends Object implements GridSerializableIterator<T>
Cache-backed iterator.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description GridCacheIterator(GridCacheContext<K,V> cctx, Iterable<? extends javax.cache.Cache.Entry<K,V>> c, IgniteClosure<javax.cache.Cache.Entry<K,V>,T> trans, IgnitePredicate<javax.cache.Cache.Entry<K,V>>[] filter)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanhasNext()Tnext()voidremove()-
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
-
-
-
-
Constructor Detail
-
GridCacheIterator
public GridCacheIterator(GridCacheContext<K,V> cctx, Iterable<? extends javax.cache.Cache.Entry<K,V>> c, IgniteClosure<javax.cache.Cache.Entry<K,V>,T> trans, IgnitePredicate<javax.cache.Cache.Entry<K,V>>[] filter)
- Parameters:
cctx- Context.c- Cache entry collection.trans- Transformer.filter- Filter.
-
-