MCPcopy Create free account
hub / github.com/apple/foundationdb / waitPurgeGranulesComplete

Method waitPurgeGranulesComplete

fdbclient/ThreadSafeTransaction.cpp:151–158  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

149}
150
151ThreadFuture<Void> ThreadSafeDatabase::waitPurgeGranulesComplete(const KeyRef& purgeKey) {
152 DatabaseContext* db = this->db;
153 Key key = purgeKey;
154 return onMainThread([db, key]() -> Future<Void> {
155 db->checkDeferredError();
156 return db->waitPurgeGranulesComplete(key);
157 });
158}
159
160ThreadFuture<bool> ThreadSafeDatabase::blobbifyRange(const KeyRangeRef& keyRange) {
161 DatabaseContext* db = this->db;

Callers

nothing calls this directly

Calls 3

onMainThreadFunction · 0.50
checkDeferredErrorMethod · 0.45

Tested by

no test coverage detected