Class TimeLimitIteration<E,X extends Exception>
java.lang.Object
org.eclipse.rdf4j.common.iteration.AbstractCloseableIteration<E,X>
org.eclipse.rdf4j.common.iteration.IterationWrapper<E,X>
org.eclipse.rdf4j.common.iteration.TimeLimitIteration<E,X>
- All Implemented Interfaces:
AutoCloseable
,CloseableIteration<E,
,X> Iteration<E,
X>
- Direct Known Subclasses:
AbstractParserQuery.QueryInterruptIteration
,AbstractParserQuery.QueryInterruptIteration
- Author:
- Arjohn Kampman
-
Field Summary
Fields inherited from class org.eclipse.rdf4j.common.iteration.IterationWrapper
wrappedIter
-
Constructor Summary
ModifierConstructorDescriptionprotected
TimeLimitIteration
(Iteration<? extends E, ? extends X> iter, long timeLimit) -
Method Summary
Modifier and TypeMethodDescriptionprotected void
Closes this Iteration and also closes the wrapped Iteration if it is aCloseableIteration
.boolean
hasNext()
Checks whether the wrapped Iteration contains more elements, closing this Iteration when this is not the case.next()
Returns the next element from the wrapped Iteration.void
remove()
Removes the last element that has been returned from the wrapped Iteration.protected abstract void
If the iteration is interrupted by its time limit, this method is called to generate and throw the appropriate exception.Methods inherited from class org.eclipse.rdf4j.common.iteration.AbstractCloseableIteration
close, isClosed
-
Constructor Details
-
TimeLimitIteration
-
-
Method Details
-
hasNext
Description copied from class:IterationWrapper
Checks whether the wrapped Iteration contains more elements, closing this Iteration when this is not the case. -
next
Description copied from class:IterationWrapper
Returns the next element from the wrapped Iteration. -
remove
Description copied from class:IterationWrapper
Removes the last element that has been returned from the wrapped Iteration. -
handleClose
Description copied from class:IterationWrapper
Closes this Iteration and also closes the wrapped Iteration if it is aCloseableIteration
.- Overrides:
handleClose
in classIterationWrapper<E,
X extends Exception> - Throws:
X
-
throwInterruptedException
If the iteration is interrupted by its time limit, this method is called to generate and throw the appropriate exception.- Throws:
X
- The generic class of exceptions thrown by this method.
-