| 203 | } |
| 204 | |
| 205 | GenFutureStream<KeyValue> getDescendants(Reference<DocTransaction> tr, |
| 206 | DataKey key, |
| 207 | StringRef begin, |
| 208 | StringRef end, |
| 209 | Reference<FlowLock> flowControlLock) override { |
| 210 | PromiseStream<KeyValue> p; |
| 211 | GenFutureStream<KeyValue> r(p.getFuture()); |
| 212 | r.actor = FDBPlugin_getDescendants(key, tr, begin, end, p, flowControlLock); |
| 213 | return r; |
| 214 | } |
| 215 | |
| 216 | void set(Reference<DocTransaction> tr, DataKey key, ValueRef value) override { |
| 217 | std::string k = getFDBKey(key); |
nothing calls this directly
no outgoing calls
no test coverage detected