Class LockingIteration<E,X extends Exception>
- java.lang.Object
-
- org.eclipse.rdf4j.common.iteration.AbstractCloseableIteration<E,X>
-
- org.eclipse.rdf4j.common.iteration.IterationWrapper<E,X>
-
- org.eclipse.rdf4j.common.concurrent.locks.LockingIteration<E,X>
-
- All Implemented Interfaces:
AutoCloseable,org.eclipse.rdf4j.common.iteration.CloseableIteration<E,X>,org.eclipse.rdf4j.common.iteration.Iteration<E,X>
@Deprecated(since="4.1.0") public class LockingIteration<E,X extends Exception> extends org.eclipse.rdf4j.common.iteration.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.
-
-
Constructor Summary
Constructors Constructor Description LockingIteration(Lock lock, org.eclipse.rdf4j.common.iteration.Iteration<? extends E,X> 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>
org.eclipse.rdf4j.common.iteration.CloseableIteration<T,R>getInstance(Lock lock, org.eclipse.rdf4j.common.iteration.CloseableIteration<T,R> iter)Deprecated.protected voidhandleClose()Deprecated.-
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
-
-
-
-
Constructor Detail
-
LockingIteration
@Deprecated(since="4.1.0", forRemoval=true) public LockingIteration(Lock lock, org.eclipse.rdf4j.common.iteration.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.
-
-