Class SailBaseIteration<T, E extends Exception>
java.lang.Object
org.eclipse.rdf4j.common.iteration.AbstractCloseableIteration<T,E>
org.eclipse.rdf4j.common.iteration.IterationWrapper<T,E>
org.eclipse.rdf4j.sail.helpers.SailBaseIteration<T,E>
- All Implemented Interfaces:
AutoCloseable, CloseableIteration<T,E>, Iteration<T, E>
An iteration extension that keeps a reference to the AbstractSailConnection from which it originates and signals when
it is closed.
-
Field Summary
FieldsFields inherited from class IterationWrapper
wrappedIter -
Constructor Summary
ConstructorsConstructorDescriptionSailBaseIteration(CloseableIteration<? extends T, ? extends E> iter, AbstractSailConnection connection) Creates a new memory-store specific iteration object. -
Method Summary
Modifier and TypeMethodDescriptionprotected voidDeprecated.protected voidCloses this Iteration and also closes the wrapped Iteration if it is aCloseableIteration.booleanhasNext()Checks whether the wrapped Iteration contains more elements, closing this Iteration when this is not the case.Methods inherited from class IterationWrapper
next, removeMethods inherited from class AbstractCloseableIteration
close, isClosedMethods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface CloseableIteration
stream
-
Field Details
-
connection
-
-
Constructor Details
-
SailBaseIteration
public SailBaseIteration(CloseableIteration<? extends T, ? extends E> iter, AbstractSailConnection connection) Creates a new memory-store specific iteration object.- Parameters:
iter- the wrapped iteration over sail objects.connection- the connection from which this iteration originates.
-
-
Method Details
-
hasNext
public boolean hasNext() throws EDescription copied from class:IterationWrapperChecks whether the wrapped Iteration contains more elements, closing this Iteration when this is not the case. -
handleClose
protected void handleClose() throws EDescription copied from class:IterationWrapperCloses this Iteration and also closes the wrapped Iteration if it is aCloseableIteration.- Overrides:
handleClosein classIterationWrapper<T, E extends Exception>- Throws:
E
-
forceClose
-