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

Class ExtMsgDelete

src/ExtMsg.actor.h:207–221  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

205};
206
207struct ExtMsgDelete : ExtMsg, FastAllocated<ExtMsgDelete> {
208 enum { opcode = 2006 };
209
210 ExtMsgHeader* header;
211 Namespace ns;
212 int32_t flags;
213 std::vector<bson::BSONObj> selectors;
214
215 std::string toString() override;
216 Future<Void> run(Reference<ExtConnection>) override;
217
218private:
219 ExtMsgDelete(ExtMsgHeader*, const uint8_t*);
220 friend struct ExtMsg::Factory<ExtMsgDelete>;
221};
222
223struct ExtMsgKillCursors : ExtMsg, FastAllocated<ExtMsgKillCursors> {
224 enum { opcode = 2007 };

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected