The write concern options that decorate the server command.
| 43 | |
| 44 | /** The write concern options that decorate the server command. */ |
| 45 | interface 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 |
nothing calls this directly
no outgoing calls
no test coverage detected