* Initiate an In order bulk write operation. Operations will be serially executed in the order they are added, creating a new operation for each switch in types. * * @throws MongoNotConnectedError * @remarks * **NOTE:** MongoClient must be connected prior to calling this method due to a
(options?: BulkWriteOptions)
| 1198 | * However, `collection.bulkWrite()` provides an equivalent API that does not require prior connecting. |
| 1199 | */ |
| 1200 | initializeOrderedBulkOp(options?: BulkWriteOptions): OrderedBulkOperation { |
| 1201 | return new OrderedBulkOperation(this as TODO_NODE_3286, resolveOptions(this, options)); |
| 1202 | } |
| 1203 | |
| 1204 | /** |
| 1205 | * An estimated count of matching documents in the db to a filter. |