Class IteratorBlockingQueue<T>

java.lang.Object
org.apache.jena.atlas.iterator.IteratorBlockingQueue<T>
All Implemented Interfaces:
Iterator<T>

public class IteratorBlockingQueue<T> extends Object implements Iterator<T>
Iterator over a blocking queue until queue end seen
  • Constructor Details

    • IteratorBlockingQueue

      public IteratorBlockingQueue(BlockingQueue<T> queue, T endMarker)
  • Method Details

    • hasNext

      public boolean hasNext()
      Specified by:
      hasNext in interface Iterator<T>
    • next

      public T next()
      Specified by:
      next in interface Iterator<T>