We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2219c82 commit d3ace45Copy full SHA for d3ace45
gcloud-java-datastore/src/main/java/com/google/gcloud/datastore/QueryResults.java
@@ -22,7 +22,8 @@
22
* The result of a Google Cloud Datastore query submission.
23
* When the result is not typed it is possible to cast it to its appropriate type according to
24
* the {@link #resultClass} value.
25
- * Results are loaded lazily; therefore it is possible to get a {@code DatastoreException}
+ * Results are loaded lazily in batches, where batch size is set by Cloud Datastore. As a result, it
26
+ * is possible to get a {@code DatastoreException}.
27
* upon {@link Iterator#hasNext hasNext} or {@link Iterator#next next} calls.
28
*
29
* @param <V> the type of the results value.
0 commit comments