Future<MongoClientUpdateResult> |
MongoClient.replaceDocuments(String collection,
JsonObject query,
JsonObject replace) |
Replace matching documents in the specified collection and return the handler with MongoClientUpdateResult result
|
Future<MongoClientUpdateResult> |
MongoClient.replaceDocumentsWithOptions(String collection,
JsonObject query,
JsonObject replace,
UpdateOptions options) |
Replace matching documents in the specified collection, specifying options and return the handler with MongoClientUpdateResult result
|
Future<MongoClientUpdateResult> |
MongoClient.updateCollection(String collection,
JsonObject query,
JsonArray update) |
Use an aggregation pipeline to update documents in the specified collection and return the handler with MongoClientUpdateResult result
|
Future<MongoClientUpdateResult> |
MongoClient.updateCollection(String collection,
JsonObject query,
JsonObject update) |
Update matching documents in the specified collection and return the handler with MongoClientUpdateResult result
|
Future<MongoClientUpdateResult> |
MongoClient.updateCollectionWithOptions(String collection,
JsonObject query,
JsonArray update,
UpdateOptions options) |
Use an aggregation pipeline to update documents in the specified collection, specifying options and return the handler with MongoClientUpdateResult result
|
Future<MongoClientUpdateResult> |
MongoClient.updateCollectionWithOptions(String collection,
JsonObject query,
JsonObject update,
UpdateOptions options) |
Update matching documents in the specified collection, specifying options and return the handler with MongoClientUpdateResult result
|