| 574 | |
| 575 | virtual Future<Optional<DataValue>> get(StringRef key) { return layers->get(tr, DataKey(prefix).append(key)); } |
| 576 | virtual GenFutureStream<KeyValue> getDescendants(StringRef begin, |
| 577 | StringRef end, |
| 578 | Reference<FlowLock> flowControlLock) { |
| 579 | return layers->getDescendants(tr, prefix, begin, end, flowControlLock); |
| 580 | } |
| 581 | virtual void set(StringRef key, ValueRef value) { layers->set(tr, DataKey(prefix).append(key), value); } |
| 582 | virtual void clearDescendants() { layers->clearDescendants(tr, prefix); } |
| 583 | virtual void clear(StringRef key) { layers->clear(tr, DataKey(prefix).append(key)); } |
nothing calls this directly
no test coverage detected