Class OrderIterator
java.lang.Object
org.eclipse.rdf4j.common.iteration.AbstractCloseableIteration<BindingSet>
org.eclipse.rdf4j.common.iteration.DelayedIteration<BindingSet>
org.eclipse.rdf4j.query.algebra.evaluation.iterator.OrderIterator
- All Implemented Interfaces:
AutoCloseable
,Iterator<BindingSet>
,CloseableIteration<BindingSet>
Sorts the input and optionally applies limit and distinct.
- Author:
- James Leigh, Arjohn Kampman
-
Constructor Summary
ConstructorDescriptionOrderIterator
(CloseableIteration<BindingSet> iter, Comparator<BindingSet> comparator) OrderIterator
(CloseableIteration<BindingSet> iter, Comparator<BindingSet> comparator, long limit, boolean distinct) OrderIterator
(CloseableIteration<BindingSet> iter, Comparator<BindingSet> comparator, long limit, boolean distinct, long iterationSyncThreshold) -
Method Summary
Modifier and TypeMethodDescriptionprotected CloseableIteration
<BindingSet> Creates the iteration that should be iterated over.protected void
decrement
(int amount) protected void
Closes this iteration as well as the underlying iteration if it has already been created and happens to be aCloseableIteration
.protected void
void
remove()
Calls the remove method of the underlying iteration.Methods inherited from class org.eclipse.rdf4j.common.iteration.DelayedIteration
hasNext, next
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 Details
-
OrderIterator
-
OrderIterator
public OrderIterator(CloseableIteration<BindingSet> iter, Comparator<BindingSet> comparator, long limit, boolean distinct) -
OrderIterator
public OrderIterator(CloseableIteration<BindingSet> iter, Comparator<BindingSet> comparator, long limit, boolean distinct, long iterationSyncThreshold)
-
-
Method Details
-
createIteration
Description copied from class:DelayedIteration
Creates the iteration that should be iterated over. This method is called only once, when the iteration is first needed.- Specified by:
createIteration
in classDelayedIteration<BindingSet>
- Throws:
QueryEvaluationException
-
increment
- Throws:
QueryEvaluationException
-
decrement
- Throws:
QueryEvaluationException
-
remove
Description copied from class:DelayedIteration
Calls the remove method of the underlying iteration.- Specified by:
remove
in interfaceIterator<BindingSet>
- Overrides:
remove
in classDelayedIteration<BindingSet>
- Throws:
QueryEvaluationException
-
handleClose
Description copied from class:DelayedIteration
Closes this iteration as well as the underlying iteration if it has already been created and happens to be aCloseableIteration
.- Overrides:
handleClose
in classDelayedIteration<BindingSet>
- Throws:
QueryEvaluationException
-