Package com.google.bigtable.v2
Interface ReadChangeStreamResponse.MutationChunkOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ReadChangeStreamResponse.MutationChunk
,ReadChangeStreamResponse.MutationChunk.Builder
- Enclosing class:
- ReadChangeStreamResponse
public static interface ReadChangeStreamResponse.MutationChunkOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ReadChangeStreamResponse.MutationChunk.ChunkInfo
getChunkInfo()
If set, then the mutation is a `SetCell` with a chunked value across multiple messages.ReadChangeStreamResponse.MutationChunk.ChunkInfoOrBuilder
getChunkInfoOrBuilder()
If set, then the mutation is a `SetCell` with a chunked value across multiple messages.Mutation
getMutation()
If this is a continuation of a chunked message (`chunked_value_offset` > 0), ignore all fields except the `SetCell`'s value and merge it with the previous message by concatenating the value fields.MutationOrBuilder
getMutationOrBuilder()
If this is a continuation of a chunked message (`chunked_value_offset` > 0), ignore all fields except the `SetCell`'s value and merge it with the previous message by concatenating the value fields.boolean
hasChunkInfo()
If set, then the mutation is a `SetCell` with a chunked value across multiple messages.boolean
hasMutation()
If this is a continuation of a chunked message (`chunked_value_offset` > 0), ignore all fields except the `SetCell`'s value and merge it with the previous message by concatenating the value fields.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasChunkInfo
boolean hasChunkInfo()
If set, then the mutation is a `SetCell` with a chunked value across multiple messages.
.google.bigtable.v2.ReadChangeStreamResponse.MutationChunk.ChunkInfo chunk_info = 1;
- Returns:
- Whether the chunkInfo field is set.
-
getChunkInfo
ReadChangeStreamResponse.MutationChunk.ChunkInfo getChunkInfo()
If set, then the mutation is a `SetCell` with a chunked value across multiple messages.
.google.bigtable.v2.ReadChangeStreamResponse.MutationChunk.ChunkInfo chunk_info = 1;
- Returns:
- The chunkInfo.
-
getChunkInfoOrBuilder
ReadChangeStreamResponse.MutationChunk.ChunkInfoOrBuilder getChunkInfoOrBuilder()
If set, then the mutation is a `SetCell` with a chunked value across multiple messages.
.google.bigtable.v2.ReadChangeStreamResponse.MutationChunk.ChunkInfo chunk_info = 1;
-
hasMutation
boolean hasMutation()
If this is a continuation of a chunked message (`chunked_value_offset` > 0), ignore all fields except the `SetCell`'s value and merge it with the previous message by concatenating the value fields.
.google.bigtable.v2.Mutation mutation = 2;
- Returns:
- Whether the mutation field is set.
-
getMutation
Mutation getMutation()
If this is a continuation of a chunked message (`chunked_value_offset` > 0), ignore all fields except the `SetCell`'s value and merge it with the previous message by concatenating the value fields.
.google.bigtable.v2.Mutation mutation = 2;
- Returns:
- The mutation.
-
getMutationOrBuilder
MutationOrBuilder getMutationOrBuilder()
If this is a continuation of a chunked message (`chunked_value_offset` > 0), ignore all fields except the `SetCell`'s value and merge it with the previous message by concatenating the value fields.
.google.bigtable.v2.Mutation mutation = 2;
-
-