java.lang.Object
org.apache.jena.sparql.util.PrintSerializableBase
org.apache.jena.sparql.engine.iterator.QueryIteratorBase
org.apache.jena.sparql.engine.iterator.QueryIter
org.apache.jena.sparql.engine.iterator.QueryIter1
org.apache.jena.sparql.engine.iterator.QueryIterSlice
- All Implemented Interfaces:
Iterator<Binding>
,org.apache.jena.atlas.io.Printable
,org.apache.jena.atlas.iterator.IteratorCloseable<Binding>
,org.apache.jena.atlas.lib.Closeable
,QueryIterator
,PrintSerializable
Iterator until a limit is reached.
-
Constructor Summary
ConstructorDescriptionQueryIterSlice
(QueryIterator cIter, long startPosition, long numItems, ExecutionContext context) Create an iterator that limits the number of returns of another CloseableIterator. -
Method Summary
Methods inherited from class org.apache.jena.sparql.engine.iterator.QueryIter1
output
Methods inherited from class org.apache.jena.sparql.engine.iterator.QueryIter
close, flatMap, getExecContext, getIteratorNumber, makeTracked, map, materialize, materialize, output
Methods inherited from class org.apache.jena.sparql.engine.iterator.QueryIteratorBase
cancel, hasNext, next, nextBinding, remove
Methods inherited from class org.apache.jena.sparql.util.PrintSerializableBase
toString, toString
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.util.Iterator
forEachRemaining
Methods inherited from interface org.apache.jena.sparql.util.PrintSerializable
toString
Methods inherited from interface org.apache.jena.sparql.engine.QueryIterator
isJoinIdentity
-
Constructor Details
-
QueryIterSlice
public QueryIterSlice(QueryIterator cIter, long startPosition, long numItems, ExecutionContext context) Create an iterator that limits the number of returns of another CloseableIterator.- Parameters:
cIter
- The closable iterator to throttlestartPosition
- Offset of start after - 0 is the no-op.numItems
- Maximum number of items to yield.
-