Interface GridIterable<T>
-
- All Superinterfaces:
GridIterator<T>,GridSerializableIterator<T>,Iterable<T>,Iterator<T>,Serializable
- All Known Implementing Classes:
GridIterableAdapter
public interface GridIterable<T> extends GridIterator<T>
Defines "rich" iterable interface that is also acts as lambda function and iterator.- See Also:
GridIterator
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GridIterator<T>iterator()ReturnsGridIteratorwhich extends regularIteratorinterface and adds methods that account for possible failures in cases when iterating over data that has been partially received over network.-
Methods inherited from interface org.apache.ignite.internal.util.lang.GridIterator
hasNextX, nextX, removeX
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
Methods inherited from interface java.util.Iterator
forEachRemaining, hasNext, next, remove
-
-
-
-
Method Detail
-
iterator
GridIterator<T> iterator()
ReturnsGridIteratorwhich extends regularIteratorinterface and adds methods that account for possible failures in cases when iterating over data that has been partially received over network.- Specified by:
iteratorin interfaceIterable<T>- Returns:
- Instance of new
GridIterator.
-
-