Class TimeLimitIteration<E,X extends Exception>

All Implemented Interfaces:
AutoCloseable, CloseableIteration<E,X>, Iteration<E,X>
Direct Known Subclasses:
AbstractParserQuery.QueryInterruptIteration, AbstractParserQuery.QueryInterruptIteration

@Deprecated(since="4.1.0") public abstract class TimeLimitIteration<E,X extends Exception> extends IterationWrapper<E,X>
Deprecated.
Author:
Arjohn Kampman
  • Field Summary Link icon

    Fields inherited from class org.eclipse.rdf4j.common.iteration.IterationWrapper Link icon

    wrappedIter
  • Constructor Summary Link icon

    Constructors
    Modifier
    Constructor
    Description
    protected
    TimeLimitIteration(Iteration<? extends E,? extends X> iter, long timeLimit)
    Deprecated.
     
  • Method Summary Link icon

    Modifier and Type
    Method
    Description
    protected void
    Deprecated.
    Closes this Iteration and also closes the wrapped Iteration if it is a CloseableIteration.
    boolean
    Deprecated.
    Checks whether the wrapped Iteration contains more elements, closing this Iteration when this is not the case.
    Deprecated.
    Returns the next element from the wrapped Iteration.
    void
    Deprecated.
    Removes the last element that has been returned from the wrapped Iteration.
    protected abstract void
    Deprecated.
    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 Link icon

    close, isClosed

    Methods inherited from class java.lang.Object Link icon

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface org.eclipse.rdf4j.common.iteration.CloseableIteration Link icon

    stream
  • Constructor Details Link icon

    • TimeLimitIteration Link icon

      protected TimeLimitIteration(Iteration<? extends E,? extends X> iter, long timeLimit)
      Deprecated.
  • Method Details Link icon

    • hasNext Link icon

      public boolean hasNext() throws X
      Deprecated.
      Description copied from class: IterationWrapper
      Checks whether the wrapped Iteration contains more elements, closing this Iteration when this is not the case.
      Specified by:
      hasNext in interface Iteration<E,X extends Exception>
      Overrides:
      hasNext in class IterationWrapper<E,X extends Exception>
      Returns:
      true if the wrapped Iteration contains more elements, false otherwise.
      Throws:
      X
    • next Link icon

      public E next() throws X
      Deprecated.
      Description copied from class: IterationWrapper
      Returns the next element from the wrapped Iteration.
      Specified by:
      next in interface Iteration<E,X extends Exception>
      Overrides:
      next in class IterationWrapper<E,X extends Exception>
      Returns:
      the next element in the iteration.
      Throws:
      X
    • remove Link icon

      public void remove() throws X
      Deprecated.
      Description copied from class: IterationWrapper
      Removes the last element that has been returned from the wrapped Iteration.
      Specified by:
      remove in interface Iteration<E,X extends Exception>
      Overrides:
      remove in class IterationWrapper<E,X extends Exception>
      Throws:
      X
    • handleClose Link icon

      protected void handleClose() throws X
      Deprecated.
      Description copied from class: IterationWrapper
      Closes this Iteration and also closes the wrapped Iteration if it is a CloseableIteration.
      Overrides:
      handleClose in class IterationWrapper<E,X extends Exception>
      Throws:
      X
    • throwInterruptedException Link icon

      protected abstract void throwInterruptedException() throws X
      Deprecated.
      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.