resumeAtTopicSequenceNumber property

  1. @TagNumber(3)
Int64 resumeAtTopicSequenceNumber

--> Providing this is not required. <--

If provided, attempt to reconnect to the topic and replay messages starting from the provided sequence number. You may get a discontinuity if some (or all) of the messages are not available. If not provided (or 0), the subscription will begin with the latest messages.

Implementation

@$pb.TagNumber(3)
$fixnum.Int64 get resumeAtTopicSequenceNumber => $_getI64(2);
  1. @TagNumber(3)
void resumeAtTopicSequenceNumber=(Int64 v)

Implementation

@$pb.TagNumber(3)
set resumeAtTopicSequenceNumber($fixnum.Int64 v) {
  $_setInt64(2, v);
}