rollbackTransaction method
Rolls back the transaction identified by txnId in the worker.
Implementation
Future<bool> rollbackTransaction(int txnId) async {
final r = await _sendRequest<BoolResponse>(
RollbackTransactionRequest(_nextRequestId(), txnId),
);
return r.value;
}