resumeAtTopicSequenceNumber property
- @TagNumber.new(3)
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 provided at 1, you may receive some messages leading up to whatever the newest message is. The exact amount is unspecified and subject to change. If not provided (or 0), the subscription will begin with the latest messages.
Implementation
@$pb.TagNumber(3)
$fixnum.Int64 get resumeAtTopicSequenceNumber => $_getI64(2);
- @TagNumber.new(3)
Implementation
@$pb.TagNumber(3)
set resumeAtTopicSequenceNumber($fixnum.Int64 v) {
$_setInt64(2, v);
}