| 436 | } |
| 437 | |
| 438 | ThreadFuture<Void> DLTransaction::onError(Error const& e) { |
| 439 | FdbCApi::FDBFuture* f = api->transactionOnError(tr, e.code()); |
| 440 | |
| 441 | return toThreadFuture<Void>(api, f, [](FdbCApi::FDBFuture* f, FdbCApi* api) { return Void(); }); |
| 442 | } |
| 443 | |
| 444 | void DLTransaction::reset() { |
| 445 | api->transactionReset(tr); |
nothing calls this directly
no test coverage detected