readTime property

  1. @TagNumber(3)
Timestamp get readTime

The time at which the aggregate result was computed. This is always monotonically increasing; in this case, the previous AggregationResult in the result stream are guaranteed not to have changed between their read_time and this one.

If the query returns no results, a response with read_time and no result will be sent, and this represents the time at which the query was run.

Implementation

@$pb.TagNumber(3)
$4.Timestamp get readTime => $_getN(2);
  1. @TagNumber(3)
set readTime (Timestamp v)

Implementation

@$pb.TagNumber(3)
set readTime($4.Timestamp v) {
  setField(3, v);
}