pageSize property

  1. @TagNumber(5)
int pageSize

The maximum number of partitions to return in this call, subject to partition_count.

For example, if partition_count = 10 and page_size = 8, the first call to PartitionQuery will return up to 8 partitions and a next_page_token if more results exist. A second call to PartitionQuery will return up to 2 partitions, to complete the total of 10 specified in partition_count.

Implementation

@$pb.TagNumber(5)
$core.int get pageSize => $_getIZ(4);
  1. @TagNumber(5)
void pageSize=(int v)

Implementation

@$pb.TagNumber(5)
set pageSize($core.int v) {
  $_setSignedInt32(4, v);
}