commitTime property

  1. @TagNumber(4)
Timestamp get commitTime

The time at which the commit occurred. Any read with an equal or greater read_time is guaranteed to see the effects of the write.

Implementation

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

Implementation

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