MCPcopy
hub / github.com/mongodb/node-mongodb-native / CommandWriteConcernOptions

Interface CommandWriteConcernOptions

src/write_concern.ts:45–52  ·  src/write_concern.ts::CommandWriteConcernOptions

The write concern options that decorate the server command.

Source from the content-addressed store, hash-verified

43
44/** The write concern options that decorate the server command. */
45interface CommandWriteConcernOptions {
46 /** The write concern */
47 w?: W;
48 /** The journal write concern. */
49 j?: boolean;
50 /** The write concern timeout. */
51 wtimeout?: number;
52}
53
54/**
55 * A MongoDB WriteConcern, which describes the level of acknowledgement

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected