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

Class DeleteCmd

src/ExtCmd.actor.cpp:1084–1091  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1082 Reference<ExtMsgQuery> msg,
1083 Reference<ExtMsgReply> reply);
1084struct DeleteCmd {
1085 static const char* name;
1086 static Future<Reference<ExtMsgReply>> call(Reference<ExtConnection> nmc,
1087 Reference<ExtMsgQuery> query,
1088 Reference<ExtMsgReply> reply) {
1089 return deleteAndReply(nmc, query, reply);
1090 }
1091};
1092REGISTER_CMD(DeleteCmd, "delete");
1093
1094ACTOR static Future<Reference<ExtMsgReply>> deleteAndReply(Reference<ExtConnection> nmc,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected