firstCommittedSequenceNumber method

  1. @override
  2. @server
int? firstCommittedSequenceNumber()
override

Smallest commitId still retained in the log, or null if the log is empty. See HiveCommitLogKeyStore.firstCommitId for why the box read is correct.

Implementation

@override
@server
int? firstCommittedSequenceNumber() {
  return _commitLogKeyStore.firstCommitId;
}