public class StreamingResponseIterator
Modifier and Type | Method and Description |
---|---|
boolean |
hasNext()
Returns true if this StreamingResponseIterator has more items to return.
|
java.lang.Object |
next()
Returns the next item, or null if there are no more to return
|
void |
remove()
This method is part of Iterator's contract, but in this case it no-ops - as a sequential
accessor of pre-fetched data, StreamingResponseIterator is obviously read-only
|
public boolean hasNext()
public java.lang.Object next()
public void remove()