com.dtolabs.rundeck.core.logging
Interface CompletableIterator<T>

All Superinterfaces:
java.util.Iterator<T>
All Known Subinterfaces:
LogEventIterator, ReverseSeekingStreamingLogReader, StreamingLogReader, StreamingLogReaderPlugin

public interface CompletableIterator<T>
extends java.util.Iterator<T>


Method Summary
 boolean isComplete()
          Return true if the underlying source is completely exhausted, whether or not there are any items to produce (may return false even if Iterator.hasNext() returns false).
 
Methods inherited from interface java.util.Iterator
hasNext, next, remove
 

Method Detail

isComplete

boolean isComplete()
Return true if the underlying source is completely exhausted, whether or not there are any items to produce (may return false even if Iterator.hasNext() returns false).

Returns:
true if underlying iteration source is exhasuted