Class ChangeStreamRecord.PartitionEventRecord

java.lang.Object
com.google.protobuf.AbstractMessageLite
com.google.protobuf.AbstractMessage
com.google.protobuf.GeneratedMessageV3
com.google.spanner.v1.ChangeStreamRecord.PartitionEventRecord
All Implemented Interfaces:
com.google.protobuf.Message, com.google.protobuf.MessageLite, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, ChangeStreamRecord.PartitionEventRecordOrBuilder, Serializable
Enclosing class:
ChangeStreamRecord

public static final class ChangeStreamRecord.PartitionEventRecord extends com.google.protobuf.GeneratedMessageV3 implements ChangeStreamRecord.PartitionEventRecordOrBuilder
 A partition event record describes key range changes for a change stream
 partition. The changes to a row defined by its primary key can be captured
 in one change stream partition for a specific time range, and then be
 captured in a different change stream partition for a different time range.
 This movement of key ranges across change stream partitions is a reflection
 of activities, such as Spanner's dynamic splitting and load balancing, etc.
 Processing this event is needed if users want to guarantee processing of
 the changes for any key in timestamp order. If time ordered processing of
 changes for a primary key is not needed, this event can be ignored.
 To guarantee time ordered processing for each primary key, if the event
 describes move-ins, the reader of this partition needs to wait until the
 readers of the source partitions have processed all records with timestamps
 <= this PartitionEventRecord.commit_timestamp, before advancing beyond this
 PartitionEventRecord. If the event describes move-outs, the reader can
 notify the readers of the destination partitions that they can continue
 processing.
 
Protobuf type google.spanner.v1.ChangeStreamRecord.PartitionEventRecord
See Also:
  • Field Details

    • COMMIT_TIMESTAMP_FIELD_NUMBER

      public static final int COMMIT_TIMESTAMP_FIELD_NUMBER
      See Also:
    • RECORD_SEQUENCE_FIELD_NUMBER

      public static final int RECORD_SEQUENCE_FIELD_NUMBER
      See Also:
    • PARTITION_TOKEN_FIELD_NUMBER

      public static final int PARTITION_TOKEN_FIELD_NUMBER
      See Also:
    • MOVE_IN_EVENTS_FIELD_NUMBER

      public static final int MOVE_IN_EVENTS_FIELD_NUMBER
      See Also:
    • MOVE_OUT_EVENTS_FIELD_NUMBER

      public static final int MOVE_OUT_EVENTS_FIELD_NUMBER
      See Also:
  • Method Details

    • newInstance

      protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
      Overrides:
      newInstance in class com.google.protobuf.GeneratedMessageV3
    • getDescriptor

      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • internalGetFieldAccessorTable

      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
    • hasCommitTimestamp

      public boolean hasCommitTimestamp()
       Indicates the commit timestamp at which the key range change occurred.
       DataChangeRecord.commit_timestamps,
       PartitionStartRecord.start_timestamps,
       PartitionEventRecord.commit_timestamps, and
       PartitionEndRecord.end_timestamps can have the same value in the same
       partition.
       
      .google.protobuf.Timestamp commit_timestamp = 1;
      Specified by:
      hasCommitTimestamp in interface ChangeStreamRecord.PartitionEventRecordOrBuilder
      Returns:
      Whether the commitTimestamp field is set.
    • getCommitTimestamp

      public com.google.protobuf.Timestamp getCommitTimestamp()
       Indicates the commit timestamp at which the key range change occurred.
       DataChangeRecord.commit_timestamps,
       PartitionStartRecord.start_timestamps,
       PartitionEventRecord.commit_timestamps, and
       PartitionEndRecord.end_timestamps can have the same value in the same
       partition.
       
      .google.protobuf.Timestamp commit_timestamp = 1;
      Specified by:
      getCommitTimestamp in interface ChangeStreamRecord.PartitionEventRecordOrBuilder
      Returns:
      The commitTimestamp.
    • getCommitTimestampOrBuilder

      public com.google.protobuf.TimestampOrBuilder getCommitTimestampOrBuilder()
       Indicates the commit timestamp at which the key range change occurred.
       DataChangeRecord.commit_timestamps,
       PartitionStartRecord.start_timestamps,
       PartitionEventRecord.commit_timestamps, and
       PartitionEndRecord.end_timestamps can have the same value in the same
       partition.
       
      .google.protobuf.Timestamp commit_timestamp = 1;
      Specified by:
      getCommitTimestampOrBuilder in interface ChangeStreamRecord.PartitionEventRecordOrBuilder
    • getRecordSequence

      public String getRecordSequence()
       Record sequence numbers are unique and monotonically increasing (but not
       necessarily contiguous) for a specific timestamp across record
       types in the same partition. To guarantee ordered processing, the reader
       should process records (of potentially different types) in
       record_sequence order for a specific timestamp in the same partition.
       
      string record_sequence = 2;
      Specified by:
      getRecordSequence in interface ChangeStreamRecord.PartitionEventRecordOrBuilder
      Returns:
      The recordSequence.
    • getRecordSequenceBytes

      public com.google.protobuf.ByteString getRecordSequenceBytes()
       Record sequence numbers are unique and monotonically increasing (but not
       necessarily contiguous) for a specific timestamp across record
       types in the same partition. To guarantee ordered processing, the reader
       should process records (of potentially different types) in
       record_sequence order for a specific timestamp in the same partition.
       
      string record_sequence = 2;
      Specified by:
      getRecordSequenceBytes in interface ChangeStreamRecord.PartitionEventRecordOrBuilder
      Returns:
      The bytes for recordSequence.
    • getPartitionToken

      public String getPartitionToken()
       Unique partition identifier describing the partition this event
       occurred on.
       [partition_token][google.spanner.v1.ChangeStreamRecord.PartitionEventRecord.partition_token]
       is equal to the partition token of the change stream partition currently
       queried to return this PartitionEventRecord.
       
      string partition_token = 3;
      Specified by:
      getPartitionToken in interface ChangeStreamRecord.PartitionEventRecordOrBuilder
      Returns:
      The partitionToken.
    • getPartitionTokenBytes

      public com.google.protobuf.ByteString getPartitionTokenBytes()
       Unique partition identifier describing the partition this event
       occurred on.
       [partition_token][google.spanner.v1.ChangeStreamRecord.PartitionEventRecord.partition_token]
       is equal to the partition token of the change stream partition currently
       queried to return this PartitionEventRecord.
       
      string partition_token = 3;
      Specified by:
      getPartitionTokenBytes in interface ChangeStreamRecord.PartitionEventRecordOrBuilder
      Returns:
      The bytes for partitionToken.
    • getMoveInEventsList

       Set when one or more key ranges are moved into the change stream
       partition identified by
       [partition_token][google.spanner.v1.ChangeStreamRecord.PartitionEventRecord.partition_token].
      
       Example: Two key ranges are moved into partition (P1) from partition (P2)
       and partition (P3) in a single transaction at timestamp T.
      
       The PartitionEventRecord returned in P1 will reflect the move as:
      
       PartitionEventRecord {
         commit_timestamp: T
         partition_token: "P1"
         move_in_events {
           source_partition_token: "P2"
         }
         move_in_events {
           source_partition_token: "P3"
         }
       }
      
       The PartitionEventRecord returned in P2 will reflect the move as:
      
       PartitionEventRecord {
         commit_timestamp: T
         partition_token: "P2"
         move_out_events {
           destination_partition_token: "P1"
         }
       }
      
       The PartitionEventRecord returned in P3 will reflect the move as:
      
       PartitionEventRecord {
         commit_timestamp: T
         partition_token: "P3"
         move_out_events {
           destination_partition_token: "P1"
         }
       }
       
      repeated .google.spanner.v1.ChangeStreamRecord.PartitionEventRecord.MoveInEvent move_in_events = 4;
      Specified by:
      getMoveInEventsList in interface ChangeStreamRecord.PartitionEventRecordOrBuilder
    • getMoveInEventsOrBuilderList

      public List<? extends ChangeStreamRecord.PartitionEventRecord.MoveInEventOrBuilder> getMoveInEventsOrBuilderList()
       Set when one or more key ranges are moved into the change stream
       partition identified by
       [partition_token][google.spanner.v1.ChangeStreamRecord.PartitionEventRecord.partition_token].
      
       Example: Two key ranges are moved into partition (P1) from partition (P2)
       and partition (P3) in a single transaction at timestamp T.
      
       The PartitionEventRecord returned in P1 will reflect the move as:
      
       PartitionEventRecord {
         commit_timestamp: T
         partition_token: "P1"
         move_in_events {
           source_partition_token: "P2"
         }
         move_in_events {
           source_partition_token: "P3"
         }
       }
      
       The PartitionEventRecord returned in P2 will reflect the move as:
      
       PartitionEventRecord {
         commit_timestamp: T
         partition_token: "P2"
         move_out_events {
           destination_partition_token: "P1"
         }
       }
      
       The PartitionEventRecord returned in P3 will reflect the move as:
      
       PartitionEventRecord {
         commit_timestamp: T
         partition_token: "P3"
         move_out_events {
           destination_partition_token: "P1"
         }
       }
       
      repeated .google.spanner.v1.ChangeStreamRecord.PartitionEventRecord.MoveInEvent move_in_events = 4;
      Specified by:
      getMoveInEventsOrBuilderList in interface ChangeStreamRecord.PartitionEventRecordOrBuilder
    • getMoveInEventsCount

      public int getMoveInEventsCount()
       Set when one or more key ranges are moved into the change stream
       partition identified by
       [partition_token][google.spanner.v1.ChangeStreamRecord.PartitionEventRecord.partition_token].
      
       Example: Two key ranges are moved into partition (P1) from partition (P2)
       and partition (P3) in a single transaction at timestamp T.
      
       The PartitionEventRecord returned in P1 will reflect the move as:
      
       PartitionEventRecord {
         commit_timestamp: T
         partition_token: "P1"
         move_in_events {
           source_partition_token: "P2"
         }
         move_in_events {
           source_partition_token: "P3"
         }
       }
      
       The PartitionEventRecord returned in P2 will reflect the move as:
      
       PartitionEventRecord {
         commit_timestamp: T
         partition_token: "P2"
         move_out_events {
           destination_partition_token: "P1"
         }
       }
      
       The PartitionEventRecord returned in P3 will reflect the move as:
      
       PartitionEventRecord {
         commit_timestamp: T
         partition_token: "P3"
         move_out_events {
           destination_partition_token: "P1"
         }
       }
       
      repeated .google.spanner.v1.ChangeStreamRecord.PartitionEventRecord.MoveInEvent move_in_events = 4;
      Specified by:
      getMoveInEventsCount in interface ChangeStreamRecord.PartitionEventRecordOrBuilder
    • getMoveInEvents

      public ChangeStreamRecord.PartitionEventRecord.MoveInEvent getMoveInEvents(int index)
       Set when one or more key ranges are moved into the change stream
       partition identified by
       [partition_token][google.spanner.v1.ChangeStreamRecord.PartitionEventRecord.partition_token].
      
       Example: Two key ranges are moved into partition (P1) from partition (P2)
       and partition (P3) in a single transaction at timestamp T.
      
       The PartitionEventRecord returned in P1 will reflect the move as:
      
       PartitionEventRecord {
         commit_timestamp: T
         partition_token: "P1"
         move_in_events {
           source_partition_token: "P2"
         }
         move_in_events {
           source_partition_token: "P3"
         }
       }
      
       The PartitionEventRecord returned in P2 will reflect the move as:
      
       PartitionEventRecord {
         commit_timestamp: T
         partition_token: "P2"
         move_out_events {
           destination_partition_token: "P1"
         }
       }
      
       The PartitionEventRecord returned in P3 will reflect the move as:
      
       PartitionEventRecord {
         commit_timestamp: T
         partition_token: "P3"
         move_out_events {
           destination_partition_token: "P1"
         }
       }
       
      repeated .google.spanner.v1.ChangeStreamRecord.PartitionEventRecord.MoveInEvent move_in_events = 4;
      Specified by:
      getMoveInEvents in interface ChangeStreamRecord.PartitionEventRecordOrBuilder
    • getMoveInEventsOrBuilder

      public ChangeStreamRecord.PartitionEventRecord.MoveInEventOrBuilder getMoveInEventsOrBuilder(int index)
       Set when one or more key ranges are moved into the change stream
       partition identified by
       [partition_token][google.spanner.v1.ChangeStreamRecord.PartitionEventRecord.partition_token].
      
       Example: Two key ranges are moved into partition (P1) from partition (P2)
       and partition (P3) in a single transaction at timestamp T.
      
       The PartitionEventRecord returned in P1 will reflect the move as:
      
       PartitionEventRecord {
         commit_timestamp: T
         partition_token: "P1"
         move_in_events {
           source_partition_token: "P2"
         }
         move_in_events {
           source_partition_token: "P3"
         }
       }
      
       The PartitionEventRecord returned in P2 will reflect the move as:
      
       PartitionEventRecord {
         commit_timestamp: T
         partition_token: "P2"
         move_out_events {
           destination_partition_token: "P1"
         }
       }
      
       The PartitionEventRecord returned in P3 will reflect the move as:
      
       PartitionEventRecord {
         commit_timestamp: T
         partition_token: "P3"
         move_out_events {
           destination_partition_token: "P1"
         }
       }
       
      repeated .google.spanner.v1.ChangeStreamRecord.PartitionEventRecord.MoveInEvent move_in_events = 4;
      Specified by:
      getMoveInEventsOrBuilder in interface ChangeStreamRecord.PartitionEventRecordOrBuilder
    • getMoveOutEventsList

       Set when one or more key ranges are moved out of the change stream
       partition identified by
       [partition_token][google.spanner.v1.ChangeStreamRecord.PartitionEventRecord.partition_token].
      
       Example: Two key ranges are moved out of partition (P1) to partition (P2)
       and partition (P3) in a single transaction at timestamp T.
      
       The PartitionEventRecord returned in P1 will reflect the move as:
      
       PartitionEventRecord {
         commit_timestamp: T
         partition_token: "P1"
         move_out_events {
           destination_partition_token: "P2"
         }
         move_out_events {
           destination_partition_token: "P3"
         }
       }
      
       The PartitionEventRecord returned in P2 will reflect the move as:
      
       PartitionEventRecord {
         commit_timestamp: T
         partition_token: "P2"
         move_in_events {
           source_partition_token: "P1"
         }
       }
      
       The PartitionEventRecord returned in P3 will reflect the move as:
      
       PartitionEventRecord {
         commit_timestamp: T
         partition_token: "P3"
         move_in_events {
           source_partition_token: "P1"
         }
       }
       
      repeated .google.spanner.v1.ChangeStreamRecord.PartitionEventRecord.MoveOutEvent move_out_events = 5;
      Specified by:
      getMoveOutEventsList in interface ChangeStreamRecord.PartitionEventRecordOrBuilder
    • getMoveOutEventsOrBuilderList

      public List<? extends ChangeStreamRecord.PartitionEventRecord.MoveOutEventOrBuilder> getMoveOutEventsOrBuilderList()
       Set when one or more key ranges are moved out of the change stream
       partition identified by
       [partition_token][google.spanner.v1.ChangeStreamRecord.PartitionEventRecord.partition_token].
      
       Example: Two key ranges are moved out of partition (P1) to partition (P2)
       and partition (P3) in a single transaction at timestamp T.
      
       The PartitionEventRecord returned in P1 will reflect the move as:
      
       PartitionEventRecord {
         commit_timestamp: T
         partition_token: "P1"
         move_out_events {
           destination_partition_token: "P2"
         }
         move_out_events {
           destination_partition_token: "P3"
         }
       }
      
       The PartitionEventRecord returned in P2 will reflect the move as:
      
       PartitionEventRecord {
         commit_timestamp: T
         partition_token: "P2"
         move_in_events {
           source_partition_token: "P1"
         }
       }
      
       The PartitionEventRecord returned in P3 will reflect the move as:
      
       PartitionEventRecord {
         commit_timestamp: T
         partition_token: "P3"
         move_in_events {
           source_partition_token: "P1"
         }
       }
       
      repeated .google.spanner.v1.ChangeStreamRecord.PartitionEventRecord.MoveOutEvent move_out_events = 5;
      Specified by:
      getMoveOutEventsOrBuilderList in interface ChangeStreamRecord.PartitionEventRecordOrBuilder
    • getMoveOutEventsCount

      public int getMoveOutEventsCount()
       Set when one or more key ranges are moved out of the change stream
       partition identified by
       [partition_token][google.spanner.v1.ChangeStreamRecord.PartitionEventRecord.partition_token].
      
       Example: Two key ranges are moved out of partition (P1) to partition (P2)
       and partition (P3) in a single transaction at timestamp T.
      
       The PartitionEventRecord returned in P1 will reflect the move as:
      
       PartitionEventRecord {
         commit_timestamp: T
         partition_token: "P1"
         move_out_events {
           destination_partition_token: "P2"
         }
         move_out_events {
           destination_partition_token: "P3"
         }
       }
      
       The PartitionEventRecord returned in P2 will reflect the move as:
      
       PartitionEventRecord {
         commit_timestamp: T
         partition_token: "P2"
         move_in_events {
           source_partition_token: "P1"
         }
       }
      
       The PartitionEventRecord returned in P3 will reflect the move as:
      
       PartitionEventRecord {
         commit_timestamp: T
         partition_token: "P3"
         move_in_events {
           source_partition_token: "P1"
         }
       }
       
      repeated .google.spanner.v1.ChangeStreamRecord.PartitionEventRecord.MoveOutEvent move_out_events = 5;
      Specified by:
      getMoveOutEventsCount in interface ChangeStreamRecord.PartitionEventRecordOrBuilder
    • getMoveOutEvents

      public ChangeStreamRecord.PartitionEventRecord.MoveOutEvent getMoveOutEvents(int index)
       Set when one or more key ranges are moved out of the change stream
       partition identified by
       [partition_token][google.spanner.v1.ChangeStreamRecord.PartitionEventRecord.partition_token].
      
       Example: Two key ranges are moved out of partition (P1) to partition (P2)
       and partition (P3) in a single transaction at timestamp T.
      
       The PartitionEventRecord returned in P1 will reflect the move as:
      
       PartitionEventRecord {
         commit_timestamp: T
         partition_token: "P1"
         move_out_events {
           destination_partition_token: "P2"
         }
         move_out_events {
           destination_partition_token: "P3"
         }
       }
      
       The PartitionEventRecord returned in P2 will reflect the move as:
      
       PartitionEventRecord {
         commit_timestamp: T
         partition_token: "P2"
         move_in_events {
           source_partition_token: "P1"
         }
       }
      
       The PartitionEventRecord returned in P3 will reflect the move as:
      
       PartitionEventRecord {
         commit_timestamp: T
         partition_token: "P3"
         move_in_events {
           source_partition_token: "P1"
         }
       }
       
      repeated .google.spanner.v1.ChangeStreamRecord.PartitionEventRecord.MoveOutEvent move_out_events = 5;
      Specified by:
      getMoveOutEvents in interface ChangeStreamRecord.PartitionEventRecordOrBuilder
    • getMoveOutEventsOrBuilder

      public ChangeStreamRecord.PartitionEventRecord.MoveOutEventOrBuilder getMoveOutEventsOrBuilder(int index)
       Set when one or more key ranges are moved out of the change stream
       partition identified by
       [partition_token][google.spanner.v1.ChangeStreamRecord.PartitionEventRecord.partition_token].
      
       Example: Two key ranges are moved out of partition (P1) to partition (P2)
       and partition (P3) in a single transaction at timestamp T.
      
       The PartitionEventRecord returned in P1 will reflect the move as:
      
       PartitionEventRecord {
         commit_timestamp: T
         partition_token: "P1"
         move_out_events {
           destination_partition_token: "P2"
         }
         move_out_events {
           destination_partition_token: "P3"
         }
       }
      
       The PartitionEventRecord returned in P2 will reflect the move as:
      
       PartitionEventRecord {
         commit_timestamp: T
         partition_token: "P2"
         move_in_events {
           source_partition_token: "P1"
         }
       }
      
       The PartitionEventRecord returned in P3 will reflect the move as:
      
       PartitionEventRecord {
         commit_timestamp: T
         partition_token: "P3"
         move_in_events {
           source_partition_token: "P1"
         }
       }
       
      repeated .google.spanner.v1.ChangeStreamRecord.PartitionEventRecord.MoveOutEvent move_out_events = 5;
      Specified by:
      getMoveOutEventsOrBuilder in interface ChangeStreamRecord.PartitionEventRecordOrBuilder
    • isInitialized

      public final boolean isInitialized()
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
    • writeTo

      public void writeTo(com.google.protobuf.CodedOutputStream output) throws IOException
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      Throws:
      IOException
    • getSerializedSize

      public int getSerializedSize()
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
    • equals

      public boolean equals(Object obj)
      Specified by:
      equals in interface com.google.protobuf.Message
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
    • hashCode

      public int hashCode()
      Specified by:
      hashCode in interface com.google.protobuf.Message
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
    • parseFrom

      public static ChangeStreamRecord.PartitionEventRecord parseFrom(ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static ChangeStreamRecord.PartitionEventRecord parseFrom(ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static ChangeStreamRecord.PartitionEventRecord parseFrom(com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static ChangeStreamRecord.PartitionEventRecord parseFrom(com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static ChangeStreamRecord.PartitionEventRecord parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static ChangeStreamRecord.PartitionEventRecord parseFrom(byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static ChangeStreamRecord.PartitionEventRecord parseFrom(InputStream input) throws IOException
      Throws:
      IOException
    • parseFrom

      public static ChangeStreamRecord.PartitionEventRecord parseFrom(InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws IOException
      Throws:
      IOException
    • parseDelimitedFrom

      public static ChangeStreamRecord.PartitionEventRecord parseDelimitedFrom(InputStream input) throws IOException
      Throws:
      IOException
    • parseDelimitedFrom

      public static ChangeStreamRecord.PartitionEventRecord parseDelimitedFrom(InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws IOException
      Throws:
      IOException
    • parseFrom

      public static ChangeStreamRecord.PartitionEventRecord parseFrom(com.google.protobuf.CodedInputStream input) throws IOException
      Throws:
      IOException
    • parseFrom

      public static ChangeStreamRecord.PartitionEventRecord parseFrom(com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws IOException
      Throws:
      IOException
    • newBuilderForType

      Specified by:
      newBuilderForType in interface com.google.protobuf.Message
      Specified by:
      newBuilderForType in interface com.google.protobuf.MessageLite
    • newBuilder

    • newBuilder

    • toBuilder

      Specified by:
      toBuilder in interface com.google.protobuf.Message
      Specified by:
      toBuilder in interface com.google.protobuf.MessageLite
    • newBuilderForType

      protected ChangeStreamRecord.PartitionEventRecord.Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      Specified by:
      newBuilderForType in class com.google.protobuf.GeneratedMessageV3
    • getDefaultInstance

      public static ChangeStreamRecord.PartitionEventRecord getDefaultInstance()
    • parser

      public static com.google.protobuf.Parser<ChangeStreamRecord.PartitionEventRecord> parser()
    • getParserForType

      public com.google.protobuf.Parser<ChangeStreamRecord.PartitionEventRecord> getParserForType()
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
    • getDefaultInstanceForType

      public ChangeStreamRecord.PartitionEventRecord getDefaultInstanceForType()
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder