Class LockingIteration<E,​X extends java.lang.Exception>

  • All Implemented Interfaces:
    java.lang.AutoCloseable, CloseableIteration<E,​X>, Iteration<E,​X>

    @Deprecated(since="4.1.0")
    public class LockingIteration<E,​X extends java.lang.Exception>
    extends IterationWrapper<E,​X>
    Deprecated.
    An Iteration that holds on to a lock until the Iteration is closed. Upon closing, the underlying Iteration is closed before the lock is released. This iterator closes itself as soon as all elements have been read.
    • Field Detail

      • lock

        private final Lock lock
        Deprecated.
        The lock to release when the Iteration is closed.
    • Constructor Detail

      • LockingIteration

        @Deprecated(since="4.1.0",
                    forRemoval=true)
        public LockingIteration​(Lock lock,
                                Iteration<? extends E,​X> iter)
        Deprecated, for removal: This API element is subject to removal in a future version.
        Creates a new LockingIteration.
        Parameters:
        lock - The lock to release when the itererator is closed, must not be null.
        iter - The underlying Iteration, must not be null.