const classafMongo::OpReplyFlags
sys::Obj afMongo::Flag afMongo::OpReplyFlags
(Advanced) Flags set in a Reply Response from MongoDB.
@see https://docs.mongodb.com/manual/reference/mongodb-wire-protocol/#op-reply
- awaitCapable
const static OpReplyFlags awaitCapable := OpReplyFlags.<ctor>(8, "AwaitCapable")
Set when the server supports the
AwaitData
Query option.- cursorNotFound
const static OpReplyFlags cursorNotFound := OpReplyFlags.<ctor>(1, "CursorNotFound")
Set when the cursor id is not valid at the server.
- none
const static OpReplyFlags none := OpReplyFlags.<ctor>(0, "None")
No flags are set. Business as usual.
- queryFailure
const static OpReplyFlags queryFailure := OpReplyFlags.<ctor>(2, "QueryFailure")
Set when when query failed. Results consist of one document containing an
$err
field describing the failure.