Package com.google.datastore.v1
Interface CommitResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CommitResponse
,CommitResponse.Builder
public interface CommitResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.Timestamp
getCommitTime()
The transaction commit timestamp.com.google.protobuf.TimestampOrBuilder
getCommitTimeOrBuilder()
The transaction commit timestamp.int
getIndexUpdates()
The number of index entries updated during the commit, or zero if none were updated.MutationResult
getMutationResults(int index)
The result of performing the mutations.int
getMutationResultsCount()
The result of performing the mutations.List<MutationResult>
getMutationResultsList()
The result of performing the mutations.MutationResultOrBuilder
getMutationResultsOrBuilder(int index)
The result of performing the mutations.List<? extends MutationResultOrBuilder>
getMutationResultsOrBuilderList()
The result of performing the mutations.boolean
hasCommitTime()
The transaction commit timestamp.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getMutationResultsList
List<MutationResult> getMutationResultsList()
The result of performing the mutations. The i-th mutation result corresponds to the i-th mutation in the request.
repeated .google.datastore.v1.MutationResult mutation_results = 3;
-
getMutationResults
MutationResult getMutationResults(int index)
The result of performing the mutations. The i-th mutation result corresponds to the i-th mutation in the request.
repeated .google.datastore.v1.MutationResult mutation_results = 3;
-
getMutationResultsCount
int getMutationResultsCount()
The result of performing the mutations. The i-th mutation result corresponds to the i-th mutation in the request.
repeated .google.datastore.v1.MutationResult mutation_results = 3;
-
getMutationResultsOrBuilderList
List<? extends MutationResultOrBuilder> getMutationResultsOrBuilderList()
The result of performing the mutations. The i-th mutation result corresponds to the i-th mutation in the request.
repeated .google.datastore.v1.MutationResult mutation_results = 3;
-
getMutationResultsOrBuilder
MutationResultOrBuilder getMutationResultsOrBuilder(int index)
The result of performing the mutations. The i-th mutation result corresponds to the i-th mutation in the request.
repeated .google.datastore.v1.MutationResult mutation_results = 3;
-
getIndexUpdates
int getIndexUpdates()
The number of index entries updated during the commit, or zero if none were updated.
int32 index_updates = 4;
- Returns:
- The indexUpdates.
-
hasCommitTime
boolean hasCommitTime()
The transaction commit timestamp. Not set for non-transactional commits.
.google.protobuf.Timestamp commit_time = 8;
- Returns:
- Whether the commitTime field is set.
-
getCommitTime
com.google.protobuf.Timestamp getCommitTime()
The transaction commit timestamp. Not set for non-transactional commits.
.google.protobuf.Timestamp commit_time = 8;
- Returns:
- The commitTime.
-
getCommitTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getCommitTimeOrBuilder()
The transaction commit timestamp. Not set for non-transactional commits.
.google.protobuf.Timestamp commit_time = 8;
-
-