| 175 | // doesn't do that. |
| 176 | |
| 177 | static Future<Optional<Value>> readThrough(ReadYourWritesTransaction* ryw, GetValueReq read, Snapshot snapshot) { |
| 178 | return ryw->tr.get(read.key, snapshot); |
| 179 | } |
| 180 | |
| 181 | ACTOR static Future<Key> readThrough(ReadYourWritesTransaction* ryw, GetKeyReq read, Snapshot snapshot) { |
| 182 | Key key = wait(ryw->tr.getKey(read.key, snapshot)); |
nothing calls this directly
no test coverage detected