Modifier and Type | Method and Description |
---|---|
io.vertx.core.Future<MongoClientDeleteResult> |
MongoClient.removeDocument(String collection,
io.vertx.core.json.JsonObject query)
Like
MongoClient.removeDocument(String, JsonObject, Handler) but returns a Future of the asynchronous result |
io.vertx.core.Future<MongoClientDeleteResult> |
MongoClient.removeDocuments(String collection,
io.vertx.core.json.JsonObject query)
Like
MongoClient.removeDocuments(String, JsonObject, Handler) but returns a Future of the asynchronous result |
io.vertx.core.Future<MongoClientDeleteResult> |
MongoClient.removeDocumentsWithOptions(String collection,
io.vertx.core.json.JsonObject query,
WriteOption writeOption)
Like
MongoClient.removeDocumentsWithOptions(String, JsonObject, WriteOption, Handler) but returns a Future of the asynchronous result |
io.vertx.core.Future<MongoClientDeleteResult> |
MongoClient.removeDocumentWithOptions(String collection,
io.vertx.core.json.JsonObject query,
WriteOption writeOption)
Like
MongoClient.removeDocumentWithOptions(String, JsonObject, WriteOption, Handler) but returns a Future of the asynchronous result |
Modifier and Type | Method and Description |
---|---|
MongoClient |
MongoClient.removeDocument(String collection,
io.vertx.core.json.JsonObject query,
io.vertx.core.Handler<io.vertx.core.AsyncResult<MongoClientDeleteResult>> resultHandler)
Remove a single matching document from a collection and return the handler with
MongoClientDeleteResult result |
MongoClient |
MongoClient.removeDocuments(String collection,
io.vertx.core.json.JsonObject query,
io.vertx.core.Handler<io.vertx.core.AsyncResult<MongoClientDeleteResult>> resultHandler)
Remove matching documents from a collection and return the handler with
MongoClientDeleteResult result |
MongoClient |
MongoClient.removeDocumentsWithOptions(String collection,
io.vertx.core.json.JsonObject query,
WriteOption writeOption,
io.vertx.core.Handler<io.vertx.core.AsyncResult<MongoClientDeleteResult>> resultHandler)
Remove matching documents from a collection with the specified write option and return the handler with
MongoClientDeleteResult result |
MongoClient |
MongoClient.removeDocumentWithOptions(String collection,
io.vertx.core.json.JsonObject query,
WriteOption writeOption,
io.vertx.core.Handler<io.vertx.core.AsyncResult<MongoClientDeleteResult>> resultHandler)
Remove a single matching document from a collection with the specified write option and return the handler with
MongoClientDeleteResult result |
Constructor and Description |
---|
MongoClientDeleteResult(MongoClientDeleteResult otherMongoClientDeleteResultCopy)
Copy constructor
|
Copyright © 2021 Eclipse. All rights reserved.