sequencePage property

  1. @TagNumber.new(4)
Int64 get sequencePage

Determined by the service when a topic is created. This clarifies the intent of a subscription, and ensures the right messages are sent for a given resume_at_topic_sequence_number. Include this in your Subscribe() calls when you are reconnecting. The right value is the last sequence_page you received.

Implementation

@$pb.TagNumber(4)
$fixnum.Int64 get sequencePage => $_getI64(3);
  1. @TagNumber.new(4)
set sequencePage (Int64 v)

Implementation

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