| 324 | } |
| 325 | |
| 326 | EmptyFuture Transaction::commit() { |
| 327 | return EmptyFuture(fdb_transaction_commit(tr_)); |
| 328 | } |
| 329 | |
| 330 | EmptyFuture Transaction::on_error(fdb_error_t err) { |
| 331 | return EmptyFuture(fdb_transaction_on_error(tr_, err)); |
nothing calls this directly
no test coverage detected