public interface RemoteIterator<E>
Modifier and Type | Method and Description |
---|---|
boolean |
hasNext()
Returns true if the iteration has more elements.
|
E |
next()
Returns the next element in the iteration.
|
boolean hasNext() throws IOException
IOException
- if any IO error occursE next() throws IOException
NoSuchElementException
- iteration has no more elements.IOException
- if any IO error occursCopyright © 2022 Apache Software Foundation. All rights reserved.