| 189 | }; |
| 190 | |
| 191 | struct ExtMsgGetMore : ExtMsg, FastAllocated<ExtMsgGetMore> { |
| 192 | enum { opcode = 2005 }; |
| 193 | |
| 194 | ExtMsgHeader* header; |
| 195 | Namespace ns; |
| 196 | int32_t numberToReturn; |
| 197 | int64_t cursorID; |
| 198 | |
| 199 | std::string toString() override; |
| 200 | Future<Void> run(Reference<ExtConnection>) override; |
| 201 | |
| 202 | private: |
| 203 | ExtMsgGetMore(ExtMsgHeader*, const uint8_t*); |
| 204 | friend struct ExtMsg::Factory<ExtMsgGetMore>; |
| 205 | }; |
| 206 | |
| 207 | struct ExtMsgDelete : ExtMsg, FastAllocated<ExtMsgDelete> { |
| 208 | enum { opcode = 2006 }; |
nothing calls this directly
no outgoing calls
no test coverage detected