Uses of Class
io.vertx.ext.mongo.WriteOption
-
Packages that use WriteOption Package Description io.vertx.ext.mongo io.vertx.reactivex.ext.mongo io.vertx.rxjava3.ext.mongo -
-
Uses of WriteOption in io.vertx.ext.mongo
Methods in io.vertx.ext.mongo that return WriteOption Modifier and Type Method Description WriteOption
BulkWriteOptions. getWriteOption()
Get the write optionWriteOption
UpdateOptions. getWriteOption()
Get the write option.static WriteOption
WriteOption. valueOf(String name)
Returns the enum constant of this type with the specified name.static WriteOption[]
WriteOption. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in io.vertx.ext.mongo with parameters of type WriteOption Modifier and Type Method Description Future<String>
MongoClient. insertWithOptions(String collection, JsonObject document, WriteOption writeOption)
Insert a document in the specified collection with the specified write optionFuture<MongoClientDeleteResult>
MongoClient. removeDocumentsWithOptions(String collection, JsonObject query, WriteOption writeOption)
Remove matching documents from a collection with the specified write option and return the handler withMongoClientDeleteResult
resultFuture<MongoClientDeleteResult>
MongoClient. removeDocumentWithOptions(String collection, JsonObject query, WriteOption writeOption)
Remove a single matching document from a collection with the specified write option and return the handler withMongoClientDeleteResult
resultFuture<String>
MongoClient. saveWithOptions(String collection, JsonObject document, WriteOption writeOption)
Save a document in the specified collection with the specified write optionBulkWriteOptions
BulkWriteOptions. setWriteOption(WriteOption writeOption)
Set the write optionUpdateOptions
UpdateOptions. setWriteOption(WriteOption writeOption)
Set the write option -
Uses of WriteOption in io.vertx.reactivex.ext.mongo
Methods in io.vertx.reactivex.ext.mongo with parameters of type WriteOption Modifier and Type Method Description Future<String>
MongoClient. insertWithOptions(String collection, JsonObject document, WriteOption writeOption)
Insert a document in the specified collection with the specified write optionFuture<MongoClientDeleteResult>
MongoClient. removeDocumentsWithOptions(String collection, JsonObject query, WriteOption writeOption)
Remove matching documents from a collection with the specified write option and return the handler withMongoClientDeleteResult
resultFuture<MongoClientDeleteResult>
MongoClient. removeDocumentWithOptions(String collection, JsonObject query, WriteOption writeOption)
Remove a single matching document from a collection with the specified write option and return the handler withMongoClientDeleteResult
resultMaybe<String>
MongoClient. rxInsertWithOptions(String collection, JsonObject document, WriteOption writeOption)
Insert a document in the specified collection with the specified write optionMaybe<MongoClientDeleteResult>
MongoClient. rxRemoveDocumentsWithOptions(String collection, JsonObject query, WriteOption writeOption)
Remove matching documents from a collection with the specified write option and return the handler withMongoClientDeleteResult
resultMaybe<MongoClientDeleteResult>
MongoClient. rxRemoveDocumentWithOptions(String collection, JsonObject query, WriteOption writeOption)
Remove a single matching document from a collection with the specified write option and return the handler withMongoClientDeleteResult
resultMaybe<String>
MongoClient. rxSaveWithOptions(String collection, JsonObject document, WriteOption writeOption)
Save a document in the specified collection with the specified write optionFuture<String>
MongoClient. saveWithOptions(String collection, JsonObject document, WriteOption writeOption)
Save a document in the specified collection with the specified write option -
Uses of WriteOption in io.vertx.rxjava3.ext.mongo
Methods in io.vertx.rxjava3.ext.mongo with parameters of type WriteOption Modifier and Type Method Description Maybe<String>
MongoClient. insertWithOptions(String collection, JsonObject document, WriteOption writeOption)
Insert a document in the specified collection with the specified write optionMaybe<MongoClientDeleteResult>
MongoClient. removeDocumentsWithOptions(String collection, JsonObject query, WriteOption writeOption)
Remove matching documents from a collection with the specified write option and return the handler withMongoClientDeleteResult
resultMaybe<MongoClientDeleteResult>
MongoClient. removeDocumentWithOptions(String collection, JsonObject query, WriteOption writeOption)
Remove a single matching document from a collection with the specified write option and return the handler withMongoClientDeleteResult
resultMaybe<String>
MongoClient. rxInsertWithOptions(String collection, JsonObject document, WriteOption writeOption)
Insert a document in the specified collection with the specified write optionMaybe<MongoClientDeleteResult>
MongoClient. rxRemoveDocumentsWithOptions(String collection, JsonObject query, WriteOption writeOption)
Remove matching documents from a collection with the specified write option and return the handler withMongoClientDeleteResult
resultMaybe<MongoClientDeleteResult>
MongoClient. rxRemoveDocumentWithOptions(String collection, JsonObject query, WriteOption writeOption)
Remove a single matching document from a collection with the specified write option and return the handler withMongoClientDeleteResult
resultMaybe<String>
MongoClient. rxSaveWithOptions(String collection, JsonObject document, WriteOption writeOption)
Save a document in the specified collection with the specified write optionMaybe<String>
MongoClient. saveWithOptions(String collection, JsonObject document, WriteOption writeOption)
Save a document in the specified collection with the specified write option
-