Details
-
Improvement
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
Description
ResultIteratorCallback created per CAY-1829 is not super convenient, as the implementor must handle iteration on its own. So replace
void iterate(ResultIterator<T> iterator);
with
void next(T object);
which will simplify the callback code.