Class CloseDependentConnectionIteration<T>
java.lang.Object
org.eclipse.rdf4j.common.iteration.AbstractCloseableIteration<T>
org.eclipse.rdf4j.federated.evaluation.iterator.CloseDependentConnectionIteration<T>
- All Implemented Interfaces:
AutoCloseable, Iterator<T>, CloseableIteration<T>
A wrapping iteration that attempts to close the dependent
RepositoryConnection after consumption.- Author:
- Andreas Schwarte
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected final RepositoryConnectionprotected final CloseableIteration<T> Fields inherited from interface CloseableIteration
EMPTY_STATEMENT_ITERATION -
Constructor Summary
ConstructorsConstructorDescriptionCloseDependentConnectionIteration(CloseableIteration<T> inner, RepositoryConnection dependentConn) -
Method Summary
Modifier and TypeMethodDescriptionprotected voidCalled byAbstractCloseableIteration.close()when it is called for the first time.booleanhasNext()next()voidremove()Methods 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
streamMethods inherited from interface Iterator
forEachRemaining
-
Field Details
-
inner
-
dependentConn
-
-
Constructor Details
-
CloseDependentConnectionIteration
public CloseDependentConnectionIteration(CloseableIteration<T> inner, RepositoryConnection dependentConn)
-
-
Method Details
-
hasNext
- Throws:
QueryEvaluationException
-
next
- Throws:
QueryEvaluationException
-
remove
- Throws:
QueryEvaluationException
-
handleClose
Description copied from class:AbstractCloseableIterationCalled byAbstractCloseableIteration.close()when it is called for the first time. This method is only called once on each iteration. By default, this method does nothing.- Specified by:
handleClosein classAbstractCloseableIteration<T>- Throws:
QueryEvaluationException
-