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

Class ExtMsgGetMore

src/ExtMsg.actor.h:191–205  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

189};
190
191struct 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
202private:
203 ExtMsgGetMore(ExtMsgHeader*, const uint8_t*);
204 friend struct ExtMsg::Factory<ExtMsgGetMore>;
205};
206
207struct ExtMsgDelete : ExtMsg, FastAllocated<ExtMsgDelete> {
208 enum { opcode = 2006 };

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected