Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -442,6 +442,7 @@ public ApiFuture<Void> bulkMutateRowsAsync(BulkMutation mutation) {
* batch.add("[ROW KEY]", Mutation.create().setCell("[FAMILY NAME]", "[QUALIFIER]", "[VALUE]");
* }
* bigtableClient.bulkMutateRowsCallable().call(batch);
* }
* }</pre>
*/
public UnaryCallable<BulkMutation, Void> bulkMutationCallable() {
Expand All @@ -464,6 +465,7 @@ public UnaryCallable<BulkMutation, Void> bulkMutationCallable() {
* );
*
* ApiFuture<Boolean> future = bigtableClient.checkAndMutateRowAsync(mutation);
* }
* }</pre>
*/
public ApiFuture<Boolean> checkAndMutateRowAsync(ConditionalRowMutation mutation) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

/**
* This is necessary workaround for {@link
* com.google.cloud.bigtable.data.v2.stub.EnhancedBigtableStub#mutateRowsCallable()}. The settings
* com.google.cloud.bigtable.data.v2.stub.EnhancedBigtableStub#bulkMutateRowsCallable()}. The settings
* are exposed to the user using the {@link com.google.cloud.bigtable.data.v2.models.RowMutation}
* wrapper, but the actual descriptor works on the underlying {@link
* com.google.bigtable.v2.MutateRowsRequest}s. This class is used as a placeholder for the settings
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/
/**
* Implementation details for {@link
* com.google.cloud.bigtable.data.v2.stub.EnhancedBigtableStub#mutateRowsCallable()}.
* com.google.cloud.bigtable.data.v2.stub.EnhancedBigtableStub#bulkMutateRowsCallable()}.
*
* <p>The implementation adapts gax's {@link com.google.api.gax.rpc.BatchingCallable} to work with
* Bigtable's MutateRows RPC. There are 3 customizations that are necessary:
Expand Down