| 1082 | Reference<ExtMsgQuery> msg, |
| 1083 | Reference<ExtMsgReply> reply); |
| 1084 | struct 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 | }; |
| 1092 | REGISTER_CMD(DeleteCmd, "delete"); |
| 1093 | |
| 1094 | ACTOR static Future<Reference<ExtMsgReply>> deleteAndReply(Reference<ExtConnection> nmc, |
nothing calls this directly
no outgoing calls
no test coverage detected