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

Class ExtUpdateCmd

src/ExtMsg.actor.h:144–152  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

142};
143
144struct ExtUpdateCmd {
145 bson::BSONObj selector;
146 bson::BSONObj update;
147 bool upsert;
148 bool multi;
149
150 ExtUpdateCmd(bson::BSONObj selector, bson::BSONObj update, bool upsert, bool multi)
151 : selector(selector), update(update), upsert(upsert), multi(multi) {}
152};
153
154struct ExtMsgUpdate : ExtMsg, FastAllocated<ExtMsgUpdate> {
155 enum { opcode = 2001 };

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected