Class LockingIteration<E>
- java.lang.Object
-
- org.eclipse.rdf4j.common.iteration.AbstractCloseableIteration<E>
-
- org.eclipse.rdf4j.common.iteration.IterationWrapper<E>
-
- org.eclipse.rdf4j.common.concurrent.locks.LockingIteration<E>
-
- All Implemented Interfaces:
AutoCloseable
,Iterator<E>
,CloseableIteration<E>
@Deprecated(since="4.1.0") public class LockingIteration<E> extends IterationWrapper<E>
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 Summary
-
Fields inherited from class org.eclipse.rdf4j.common.iteration.IterationWrapper
wrappedIter
-
-
Constructor Summary
Constructors Constructor Description LockingIteration(Lock lock, CloseableIteration<? extends E> iter)
Deprecated, for removal: This API element is subject to removal in a future version.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static <T,R extends Exception>
CloseableIteration<T>getInstance(Lock lock, CloseableIteration<T> iter)
Deprecated.protected void
handleClose()
Deprecated.Closes this Iteration and also closes the wrapped Iteration if it is aCloseableIteration
.-
Methods inherited from class org.eclipse.rdf4j.common.iteration.IterationWrapper
hasNext, next, remove
-
Methods inherited from class org.eclipse.rdf4j.common.iteration.AbstractCloseableIteration
close, isClosed
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.eclipse.rdf4j.common.iteration.CloseableIteration
stream
-
Methods inherited from interface java.util.Iterator
forEachRemaining
-
-
-
-
Constructor Detail
-
LockingIteration
@Deprecated(since="4.1.0", forRemoval=true) public LockingIteration(Lock lock, CloseableIteration<? extends E> 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.
-
-
Method Detail
-
getInstance
public static <T,R extends Exception> CloseableIteration<T> getInstance(Lock lock, CloseableIteration<T> iter)
Deprecated.
-
handleClose
protected void handleClose()
Deprecated.Description copied from class:IterationWrapper
Closes this Iteration and also closes the wrapped Iteration if it is aCloseableIteration
.- Overrides:
handleClose
in classIterationWrapper<E>
-
-