Future<MongoClientDeleteResult> |
MongoClient.removeDocument(String collection,
JsonObject query) |
Remove a single matching document from a collection and return the handler with MongoClientDeleteResult result
|
Future<MongoClientDeleteResult> |
MongoClient.removeDocuments(String collection,
JsonObject query) |
Remove matching documents from a collection and return the handler with MongoClientDeleteResult result
|
Future<MongoClientDeleteResult> |
MongoClient.removeDocumentsWithOptions(String collection,
JsonObject query,
WriteOption writeOption) |
Remove matching documents from a collection with the specified write option and return the handler with MongoClientDeleteResult result
|
Future<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 with MongoClientDeleteResult result
|