| 366 | } |
| 367 | |
| 368 | void DLTransaction::addReadConflictRange(const KeyRangeRef& keys) { |
| 369 | throwIfError(api->transactionAddConflictRange( |
| 370 | tr, keys.begin.begin(), keys.begin.size(), keys.end.begin(), keys.end.size(), FDB_CONFLICT_RANGE_TYPE_READ)); |
| 371 | } |
| 372 | |
| 373 | void DLTransaction::atomicOp(const KeyRef& key, const ValueRef& value, uint32_t operationType) { |
| 374 | api->transactionAtomicOp( |
nothing calls this directly
no test coverage detected