Class AbstractDelegatingCloseableIteratorCollection<E>

  • Type Parameters:
    E - The type in the collection
    All Implemented Interfaces:
    Iterable<E>, Collection<E>, org.infinispan.commons.util.CloseableIteratorCollection<E>
    Direct Known Subclasses:
    AbstractDelegatingCacheCollection

    public abstract class AbstractDelegatingCloseableIteratorCollection<E>
    extends org.infinispan.commons.util.AbstractDelegatingCollection<E>
    implements org.infinispan.commons.util.CloseableIteratorCollection<E>
    Delegating collection that produces closeable iterators and spliterators from the collection returned from delegate() method.
    • Constructor Detail

      • AbstractDelegatingCloseableIteratorCollection

        public AbstractDelegatingCloseableIteratorCollection()
    • Method Detail

      • delegate

        protected abstract org.infinispan.commons.util.CloseableIteratorCollection<E> delegate()
        Specified by:
        delegate in class org.infinispan.commons.util.AbstractDelegatingCollection<E>
      • iterator

        public org.infinispan.commons.util.CloseableIterator<E> iterator()
        Description copied from interface: org.infinispan.commons.util.CloseableIteratorCollection

        This iterator should be explicitly closed when iteration upon it is completed. Failure to do so could cause resources to not be freed properly

        Specified by:
        iterator in interface org.infinispan.commons.util.CloseableIteratorCollection<E>
        Specified by:
        iterator in interface Collection<E>
        Specified by:
        iterator in interface Iterable<E>
        Overrides:
        iterator in class org.infinispan.commons.util.AbstractDelegatingCollection<E>
      • spliterator

        public org.infinispan.commons.util.CloseableSpliterator<E> spliterator()
        Description copied from interface: org.infinispan.commons.util.CloseableIteratorCollection

        This spliterator should be explicitly closed after it has been used. Failure to do so could cause resources to not be freed properly

        Specified by:
        spliterator in interface org.infinispan.commons.util.CloseableIteratorCollection<E>
        Specified by:
        spliterator in interface Collection<E>
        Specified by:
        spliterator in interface Iterable<E>
        Overrides:
        spliterator in class org.infinispan.commons.util.AbstractDelegatingCollection<E>