createSavepoint method
- @protected
Creates a savepoint.
Implementation
@protected
void createSavepoint() {
checkState(_txStatus == _TxStatus.txReady);
try {
_savepoint!.execute();
} catch (_) {
_txStatus = _TxStatus.txFailed;
rethrow;
}
}