Skip to content

Commit

Permalink
clarify batching in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Ajay Kannan committed Jan 15, 2016
1 parent 2219c82 commit 663e54b
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,9 @@
* The result of a Google Cloud Datastore query submission.
* When the result is not typed it is possible to cast it to its appropriate type according to
* the {@link #resultClass} value.
* Results are loaded lazily; therefore it is possible to get a {@code DatastoreException}
* upon {@link Iterator#hasNext hasNext} or {@link Iterator#next next} calls.
* Results are loaded lazily in batches, where batch size is set by Cloud Datastore. As a result, it
* is possible to get a {@code DatastoreException} upon {@link Iterator#hasNext hasNext} or
* {@link Iterator#next next} calls.
*
* @param <V> the type of the results value.
*/
Expand Down

0 comments on commit 663e54b

Please sign in to comment.