You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: branches/tswast-patch-1/gcloud-java-datastore/src/main/java/com/google/gcloud/datastore/DatastoreHelper.java
Copy file name to clipboardExpand all lines: branches/tswast-patch-1/gcloud-java-datastore/src/main/java/com/google/gcloud/datastore/DatastoreImpl.java
Copy file name to clipboardExpand all lines: branches/tswast-patch-1/gcloud-java-datastore/src/main/java/com/google/gcloud/datastore/DatastoreReader.java
+7-8Lines changed: 7 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -32,21 +32,20 @@ public interface DatastoreReader {
32
32
Entityget(Keykey);
33
33
34
34
/**
35
-
* Returns an {@link Entity} for each given {@link Key} that exists in the Datastore.
36
-
* The order of the result is unspecified.
37
-
* Results are loaded lazily, so it is possible to get a {@code DatastoreException}
38
-
* from the returned {@code Iterator}'s {@link Iterator#hasNext hasNext} or
39
-
* {@link Iterator#next next} methods.
35
+
* Returns an {@link Entity} for each given {@link Key} that exists in the Datastore. The order of
36
+
* the result is unspecified. Results are loaded lazily, so it is possible to get a
37
+
* {@code DatastoreException} from the returned {@code Iterator}'s
38
+
* {@link Iterator#hasNext hasNext} or {@link Iterator#next next} methods.
40
39
*
41
40
* @throws DatastoreException upon failure
42
41
* @see #get(Key)
43
42
*/
44
43
Iterator<Entity> get(Key... key);
45
44
46
45
/**
47
-
* Returns a list with a value for each given key (ordered by input).
48
-
* {@code null} values are returned for nonexistent keys.
49
-
* When possible prefer using {@link #get(Key...)} to avoid eagerly loading the results.
46
+
* Returns a list with a value for each given key (ordered by input). {@code null} values are
47
+
* returned for nonexistent keys. When possible prefer using {@link #get(Key...)} to avoid eagerly
0 commit comments