Class GridCacheIterator<K,​V,​T>

    • 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.
    • Method Detail

      • hasNext

        public boolean hasNext()
        Specified by:
        hasNext in interface Iterator<K>
      • next

        public T next()
        Specified by:
        next in interface Iterator<K>
      • remove

        public void remove()
        Specified by:
        remove in interface Iterator<K>