MCPcopy Create free account
hub / github.com/FoundationDB/fdb-document-layer / getDescendants

Method getDescendants

src/QLContext.actor.cpp:205–214  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected