Uses of Class
io.vertx.ext.mongo.BulkOperation
Packages that use BulkOperation
-
Uses of BulkOperation in io.vertx.ext.mongo
Methods in io.vertx.ext.mongo that return BulkOperationModifier and TypeMethodDescriptionstatic BulkOperationBulkOperation.createDelete(JsonObject filter) Create a new delete operation with the given filterstatic BulkOperationBulkOperation.createInsert(JsonObject document) Create a new insert operation with the given documentstatic BulkOperationBulkOperation.createReplace(JsonObject filter, JsonObject document) Create a new replace operation with the given filter and replace documentstatic BulkOperationBulkOperation.createReplace(JsonObject filter, JsonObject document, boolean upsert) Create a new replace operation with the given filter, replace document, and the upsert flagstatic BulkOperationBulkOperation.createUpdate(JsonObject filter, JsonObject document) Create a new update operation with the given filter and update documentstatic BulkOperationBulkOperation.createUpdate(JsonObject filter, JsonObject document, boolean upsert, boolean multi) Create a new update operation with the given filter, update document, the upsert flag, and multi flagBulkOperation.setCollation(CollationOptions collation) BulkOperation.setDocument(JsonObject document) Sets the document, used by insert, replace, and update operationsBulkOperation.setFilter(JsonObject filter) Sets the filter document, used by replace, update, and delete operationsBulkOperation.setHint(JsonObject hint) Sets the operation hintBulkOperation.setHintString(String hintString) Sets the operation hint stringBulkOperation.setMulti(boolean multi) Sets the multi flag, used by update and delete operationsBulkOperation.setType(BulkOperationType type) Sets the operation typeBulkOperation.setUpsert(boolean upsert) Sets the upsert flag, used by update and replace operationsMethod parameters in io.vertx.ext.mongo with type arguments of type BulkOperationModifier and TypeMethodDescriptionMongoClient.bulkWrite(String collection, List<BulkOperation> operations) Execute a bulk operation.MongoClient.bulkWriteWithOptions(String collection, List<BulkOperation> operations, BulkWriteOptions bulkWriteOptions) Execute a bulk operation with the specified write options. -
Uses of BulkOperation in io.vertx.reactivex.ext.mongo
Method parameters in io.vertx.reactivex.ext.mongo with type arguments of type BulkOperationModifier and TypeMethodDescriptionMongoClient.bulkWrite(String collection, List<BulkOperation> operations) Execute a bulk operation.MongoClient.bulkWriteWithOptions(String collection, List<BulkOperation> operations, BulkWriteOptions bulkWriteOptions) Execute a bulk operation with the specified write options.MongoClient.rxBulkWrite(String collection, List<BulkOperation> operations) Execute a bulk operation.MongoClient.rxBulkWriteWithOptions(String collection, List<BulkOperation> operations, BulkWriteOptions bulkWriteOptions) Execute a bulk operation with the specified write options. -
Uses of BulkOperation in io.vertx.rxjava3.ext.mongo
Method parameters in io.vertx.rxjava3.ext.mongo with type arguments of type BulkOperationModifier and TypeMethodDescriptionMongoClient.bulkWrite(String collection, List<BulkOperation> operations) Execute a bulk operation.MongoClient.bulkWriteWithOptions(String collection, List<BulkOperation> operations, BulkWriteOptions bulkWriteOptions) Execute a bulk operation with the specified write options.MongoClient.rxBulkWrite(String collection, List<BulkOperation> operations) Execute a bulk operation.MongoClient.rxBulkWriteWithOptions(String collection, List<BulkOperation> operations, BulkWriteOptions bulkWriteOptions) Execute a bulk operation with the specified write options.