Class StopRemainingExecutionsOnCloseIteration
java.lang.Object
org.eclipse.rdf4j.common.iteration.AbstractCloseableIteration<BindingSet>
org.eclipse.rdf4j.federated.evaluation.iterator.StopRemainingExecutionsOnCloseIteration
- All Implemented Interfaces:
AutoCloseable, Iterator<BindingSet>, CloseableIteration<BindingSet>
A wrapping iteration that attempts to close all running scheduled
Futures for the given query evaluation.
This is required for instance if the resulting iteration is not fully consumed.
- Author:
- Andreas Schwarte
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected final CloseableIteration<? extends BindingSet> protected final QueryInfoFields inherited from interface CloseableIteration
EMPTY_STATEMENT_ITERATION -
Constructor Summary
ConstructorsConstructorDescriptionStopRemainingExecutionsOnCloseIteration(CloseableIteration<? extends BindingSet> inner, QueryInfo queryInfo) -
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
-
queryInfo
-
-
Constructor Details
-
StopRemainingExecutionsOnCloseIteration
public StopRemainingExecutionsOnCloseIteration(CloseableIteration<? extends BindingSet> inner, QueryInfo queryInfo)
-
-
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<BindingSet>- Throws:
QueryEvaluationException
-