topicSequenceNumber property

  1. @TagNumber(1)
Int64 topicSequenceNumber

Topic sequence numbers are best-effort and informational. They are not transactional. They exist:

  • to help reconnect to an existing topic while trying to avoid missing items.
  • to facilitate richer monitoring and logging.
  • to provide a best-effort awareness of stream contiguity, or lack thereof, in case you need to know. You can safely ignore them if none of that matters to you!

Implementation

@$pb.TagNumber(1)
$fixnum.Int64 get topicSequenceNumber => $_getI64(0);
  1. @TagNumber(1)
void topicSequenceNumber=(Int64 v)

Implementation

@$pb.TagNumber(1)
set topicSequenceNumber($fixnum.Int64 v) {
  $_setInt64(0, v);
}