Modifier and Type | Method and Description |
---|---|
io.vertx.core.Future<MongoClientUpdateResult> |
MongoClient.replaceDocuments(String collection,
io.vertx.core.json.JsonObject query,
io.vertx.core.json.JsonObject replace)
Like
MongoClient.replaceDocuments(String, JsonObject, JsonObject, Handler) but returns a Future of the asynchronous result |
io.vertx.core.Future<MongoClientUpdateResult> |
MongoClient.replaceDocumentsWithOptions(String collection,
io.vertx.core.json.JsonObject query,
io.vertx.core.json.JsonObject replace,
UpdateOptions options)
Like
MongoClient.replaceDocumentsWithOptions(String, JsonObject, JsonObject, UpdateOptions, Handler) but returns a Future of the asynchronous result |
io.vertx.core.Future<MongoClientUpdateResult> |
MongoClient.updateCollection(String collection,
io.vertx.core.json.JsonObject query,
io.vertx.core.json.JsonArray update)
Like
MongoClient.updateCollection(String, JsonObject, JsonArray, Handler) but returns a Future of the asynchronous result |
io.vertx.core.Future<MongoClientUpdateResult> |
MongoClient.updateCollection(String collection,
io.vertx.core.json.JsonObject query,
io.vertx.core.json.JsonObject update)
Like
MongoClient.updateCollection(String, JsonObject, JsonObject, Handler) but returns a Future of the asynchronous result |
io.vertx.core.Future<MongoClientUpdateResult> |
MongoClient.updateCollectionWithOptions(String collection,
io.vertx.core.json.JsonObject query,
io.vertx.core.json.JsonArray update,
UpdateOptions options)
Like
MongoClient.updateCollectionWithOptions(String, JsonObject, JsonArray, UpdateOptions, Handler) but returns a Future of the asynchronous result |
io.vertx.core.Future<MongoClientUpdateResult> |
MongoClient.updateCollectionWithOptions(String collection,
io.vertx.core.json.JsonObject query,
io.vertx.core.json.JsonObject update,
UpdateOptions options)
Like
MongoClient.updateCollectionWithOptions(String, JsonObject, JsonObject, UpdateOptions, Handler) but returns a Future of the asynchronous result |
Modifier and Type | Method and Description |
---|---|
MongoClient |
MongoClient.replaceDocuments(String collection,
io.vertx.core.json.JsonObject query,
io.vertx.core.json.JsonObject replace,
io.vertx.core.Handler<io.vertx.core.AsyncResult<MongoClientUpdateResult>> resultHandler)
Replace matching documents in the specified collection and return the handler with
MongoClientUpdateResult result |
MongoClient |
MongoClient.replaceDocumentsWithOptions(String collection,
io.vertx.core.json.JsonObject query,
io.vertx.core.json.JsonObject replace,
UpdateOptions options,
io.vertx.core.Handler<io.vertx.core.AsyncResult<MongoClientUpdateResult>> resultHandler)
Replace matching documents in the specified collection, specifying options and return the handler with
MongoClientUpdateResult result |
MongoClient |
MongoClient.updateCollection(String collection,
io.vertx.core.json.JsonObject query,
io.vertx.core.json.JsonArray update,
io.vertx.core.Handler<io.vertx.core.AsyncResult<MongoClientUpdateResult>> resultHandler)
Use an aggregation pipeline to update documents in the specified collection and return the handler with
MongoClientUpdateResult result |
MongoClient |
MongoClient.updateCollection(String collection,
io.vertx.core.json.JsonObject query,
io.vertx.core.json.JsonObject update,
io.vertx.core.Handler<io.vertx.core.AsyncResult<MongoClientUpdateResult>> resultHandler)
Update matching documents in the specified collection and return the handler with
MongoClientUpdateResult result |
MongoClient |
MongoClient.updateCollectionWithOptions(String collection,
io.vertx.core.json.JsonObject query,
io.vertx.core.json.JsonArray update,
UpdateOptions options,
io.vertx.core.Handler<io.vertx.core.AsyncResult<MongoClientUpdateResult>> resultHandler)
Use an aggregation pipeline to update documents in the specified collection, specifying options and return the handler with
MongoClientUpdateResult result |
MongoClient |
MongoClient.updateCollectionWithOptions(String collection,
io.vertx.core.json.JsonObject query,
io.vertx.core.json.JsonObject update,
UpdateOptions options,
io.vertx.core.Handler<io.vertx.core.AsyncResult<MongoClientUpdateResult>> resultHandler)
Update matching documents in the specified collection, specifying options and return the handler with
MongoClientUpdateResult result |
Constructor and Description |
---|
MongoClientUpdateResult(MongoClientUpdateResult mongoClientUpdateResultCopy)
Copy constructor
|
Copyright © 2021 Eclipse. All rights reserved.