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/cloud/datastore/BaseDatastoreBatchWriter.java
+56-8Lines changed: 56 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -131,17 +131,65 @@ public final void update(Entity... entities) {
Copy file name to clipboardExpand all lines: branches/tswast-patch-1/gcloud-java-datastore/src/main/java/com/google/cloud/datastore/DatastoreBatchWriter.java
+31-19Lines changed: 31 additions & 19 deletions
Original file line number
Diff line number
Diff line change
@@ -19,60 +19,72 @@
19
19
importjava.util.List;
20
20
21
21
/**
22
-
* An interface to represent a batch of write operations.
23
-
* All write operation for a batch writer will be applied to the Datastore in one RPC call.
22
+
* An interface to represent a batch of write operations. All write operation for a batch writer
23
+
* will be applied to the Datastore in one RPC call.
Copy file name to clipboardExpand all lines: branches/tswast-patch-1/gcloud-java-datastore/src/main/java/com/google/cloud/datastore/DatastoreHelper.java
Copy file name to clipboardExpand all lines: branches/tswast-patch-1/gcloud-java-datastore/src/main/java/com/google/cloud/datastore/DatastoreReader.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -40,7 +40,7 @@ public interface DatastoreReader {
40
40
* @throws DatastoreException upon failure
41
41
* @see #get(Key)
42
42
*/
43
-
Iterator<Entity> get(Key... key);
43
+
Iterator<Entity> get(Key... keys);
44
44
45
45
/**
46
46
* Returns a list with a value for each given key (ordered by input). {@code null} values are
0 commit comments