commit method

void commit(
  1. ChatUtf8LineBudgetCheckpoint checkpoint
)

Commits this counter's active host transaction.

Implementation

void commit(ChatUtf8LineBudgetCheckpoint checkpoint) {
  _requireActiveCheckpoint(checkpoint);
  _activeCheckpoints.removeLast();
  checkpoint._active = false;
}