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

Class ExtReplyHeader

src/ExtStructs.h:171–179  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

169
170#pragma pack(push, 4)
171struct ExtReplyHeader : ExtMsgHeader {
172 int32_t responseFlags;
173 int64_t cursorID;
174 int32_t startingFrom;
175 int32_t documentCount;
176 ExtReplyHeader() : responseFlags(0), cursorID(0), startingFrom(0), documentCount(0) {
177 static_assert(sizeof(ExtReplyHeader) == 36, "ExtReplyHeader size mismatch");
178 }
179};
180#pragma pack(pop)
181
182#endif /* _EXT_STRUCTS_H_ */

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected