Interface ReadChangeStreamResponse.MutationChunk.ChunkInfoOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
ReadChangeStreamResponse.MutationChunk.ChunkInfo, ReadChangeStreamResponse.MutationChunk.ChunkInfo.Builder
Enclosing class:
ReadChangeStreamResponse.MutationChunk

public static interface ReadChangeStreamResponse.MutationChunk.ChunkInfoOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    The byte offset of this chunk into the total value size of the mutation.
    int
    The total value size of all the chunks that make up the `SetCell`.
    boolean
    When true, this is the last chunk of a chunked `SetCell`.

    Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

    isInitialized

    Methods inherited from interface com.google.protobuf.MessageOrBuilder

    findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
  • Method Details

    • getChunkedValueSize

      int getChunkedValueSize()
       The total value size of all the chunks that make up the `SetCell`.
       
      int32 chunked_value_size = 1;
      Returns:
      The chunkedValueSize.
    • getChunkedValueOffset

      int getChunkedValueOffset()
       The byte offset of this chunk into the total value size of the
       mutation.
       
      int32 chunked_value_offset = 2;
      Returns:
      The chunkedValueOffset.
    • getLastChunk

      boolean getLastChunk()
       When true, this is the last chunk of a chunked `SetCell`.
       
      bool last_chunk = 3;
      Returns:
      The lastChunk.