lastModified property

  1. @override
int lastModified
override

Gets a system wide unique timestamp in milliseconds.

The timestamp is a continuously growing timestamp

Implementation

@override
int get lastModified {
  return int.parse(_ordinals[Field.lastModified]!);
}
  1. @override
void lastModified=(int timestamp)
override

Sets the timestamp of a node to a specified value.

Should only be called by algorithms related to replication!

Implementation

@override
set lastModified(int timestamp) {
  _ordinals[Field.lastModified] = '$timestamp';
}