| Package | Description | 
|---|---|
| io.vertx.ext.mongo | |
| io.vertx.reactivex.ext.mongo | |
| io.vertx.rxjava.ext.mongo | |
| io.vertx.rxjava3.ext.mongo | 
| Modifier and Type | Method and Description | 
|---|---|
FindOptions | 
FindOptions.setBatchSize(int batchSize)
Set the batch size for methods loading found data in batches. 
 | 
FindOptions | 
FindOptions.setFields(JsonObject fields)
Set the fields 
 | 
FindOptions | 
FindOptions.setHint(String hint)
Set the hint 
 | 
FindOptions | 
FindOptions.setLimit(int limit)
Set the limit 
 | 
FindOptions | 
FindOptions.setSkip(int skip)
Set the skip 
 | 
FindOptions | 
FindOptions.setSort(JsonObject sort)
Set the sort document 
 | 
| Modifier and Type | Method and Description | 
|---|---|
ReadStream<JsonObject> | 
MongoClient.findBatchWithOptions(String collection,
                    JsonObject query,
                    FindOptions options)
Find matching documents in the specified collection, specifying options. 
 | 
Future<JsonObject> | 
MongoClient.findOneAndDeleteWithOptions(String collection,
                           JsonObject query,
                           FindOptions findOptions)
Like  
MongoClient.findOneAndDeleteWithOptions(String, JsonObject, FindOptions, Handler) but returns a Future of the asynchronous result | 
MongoClient | 
MongoClient.findOneAndDeleteWithOptions(String collection,
                           JsonObject query,
                           FindOptions findOptions,
                           Handler<AsyncResult<JsonObject>> resultHandler)
Find a single matching document in the specified collection and delete it. 
 | 
Future<JsonObject> | 
MongoClient.findOneAndReplaceWithOptions(String collection,
                            JsonObject query,
                            JsonObject replace,
                            FindOptions findOptions,
                            UpdateOptions updateOptions)
Like  
MongoClient.findOneAndReplaceWithOptions(String, JsonObject, JsonObject, FindOptions, UpdateOptions, Handler) but returns a Future of the asynchronous result | 
MongoClient | 
MongoClient.findOneAndReplaceWithOptions(String collection,
                            JsonObject query,
                            JsonObject replace,
                            FindOptions findOptions,
                            UpdateOptions updateOptions,
                            Handler<AsyncResult<JsonObject>> resultHandler)
Find a single matching document in the specified collection and replace it. 
 | 
Future<JsonObject> | 
MongoClient.findOneAndUpdateWithOptions(String collection,
                           JsonObject query,
                           JsonObject update,
                           FindOptions findOptions,
                           UpdateOptions updateOptions)
Like  
MongoClient.findOneAndUpdateWithOptions(String, JsonObject, JsonObject, FindOptions, UpdateOptions, Handler) but returns a Future of the asynchronous result | 
MongoClient | 
MongoClient.findOneAndUpdateWithOptions(String collection,
                           JsonObject query,
                           JsonObject update,
                           FindOptions findOptions,
                           UpdateOptions updateOptions,
                           Handler<AsyncResult<JsonObject>> resultHandler)
Find a single matching document in the specified collection and update it. 
 | 
Future<List<JsonObject>> | 
MongoClient.findWithOptions(String collection,
               JsonObject query,
               FindOptions options)
Like  
MongoClient.findWithOptions(String, JsonObject, FindOptions, Handler) but returns a Future of the asynchronous result | 
MongoClient | 
MongoClient.findWithOptions(String collection,
               JsonObject query,
               FindOptions options,
               Handler<AsyncResult<List<JsonObject>>> resultHandler)
Find matching documents in the specified collection, specifying options 
 | 
static void | 
FindOptionsConverter.fromJson(Iterable<Map.Entry<String,Object>> json,
        FindOptions obj)  | 
static void | 
FindOptionsConverter.toJson(FindOptions obj,
      JsonObject json)  | 
static void | 
FindOptionsConverter.toJson(FindOptions obj,
      Map<String,Object> json)  | 
| Constructor and Description | 
|---|
FindOptions(FindOptions options)
Copy constructor 
 | 
| Modifier and Type | Method and Description | 
|---|---|
ReadStream<JsonObject> | 
MongoClient.findBatchWithOptions(String collection,
                    JsonObject query,
                    FindOptions options)
Find matching documents in the specified collection, specifying options. 
 | 
MongoClient | 
MongoClient.findOneAndDeleteWithOptions(String collection,
                           JsonObject query,
                           FindOptions findOptions)
Find a single matching document in the specified collection and delete it. 
 | 
MongoClient | 
MongoClient.findOneAndDeleteWithOptions(String collection,
                           JsonObject query,
                           FindOptions findOptions,
                           Handler<AsyncResult<JsonObject>> resultHandler)
Find a single matching document in the specified collection and delete it. 
 | 
MongoClient | 
MongoClient.findOneAndReplaceWithOptions(String collection,
                            JsonObject query,
                            JsonObject replace,
                            FindOptions findOptions,
                            UpdateOptions updateOptions)
Find a single matching document in the specified collection and replace it. 
 | 
MongoClient | 
MongoClient.findOneAndReplaceWithOptions(String collection,
                            JsonObject query,
                            JsonObject replace,
                            FindOptions findOptions,
                            UpdateOptions updateOptions,
                            Handler<AsyncResult<JsonObject>> resultHandler)
Find a single matching document in the specified collection and replace it. 
 | 
MongoClient | 
MongoClient.findOneAndUpdateWithOptions(String collection,
                           JsonObject query,
                           JsonObject update,
                           FindOptions findOptions,
                           UpdateOptions updateOptions)
Find a single matching document in the specified collection and update it. 
 | 
MongoClient | 
MongoClient.findOneAndUpdateWithOptions(String collection,
                           JsonObject query,
                           JsonObject update,
                           FindOptions findOptions,
                           UpdateOptions updateOptions,
                           Handler<AsyncResult<JsonObject>> resultHandler)
Find a single matching document in the specified collection and update it. 
 | 
MongoClient | 
MongoClient.findWithOptions(String collection,
               JsonObject query,
               FindOptions options)
Find matching documents in the specified collection, specifying options 
 | 
MongoClient | 
MongoClient.findWithOptions(String collection,
               JsonObject query,
               FindOptions options,
               Handler<AsyncResult<List<JsonObject>>> resultHandler)
Find matching documents in the specified collection, specifying options 
 | 
Maybe<JsonObject> | 
MongoClient.rxFindOneAndDeleteWithOptions(String collection,
                             JsonObject query,
                             FindOptions findOptions)
Find a single matching document in the specified collection and delete it. 
 | 
Maybe<JsonObject> | 
MongoClient.rxFindOneAndReplaceWithOptions(String collection,
                              JsonObject query,
                              JsonObject replace,
                              FindOptions findOptions,
                              UpdateOptions updateOptions)
Find a single matching document in the specified collection and replace it. 
 | 
Maybe<JsonObject> | 
MongoClient.rxFindOneAndUpdateWithOptions(String collection,
                             JsonObject query,
                             JsonObject update,
                             FindOptions findOptions,
                             UpdateOptions updateOptions)
Find a single matching document in the specified collection and update it. 
 | 
Single<List<JsonObject>> | 
MongoClient.rxFindWithOptions(String collection,
                 JsonObject query,
                 FindOptions options)
Find matching documents in the specified collection, specifying options 
 | 
| Modifier and Type | Method and Description | 
|---|---|
ReadStream<JsonObject> | 
MongoClient.findBatchWithOptions(String collection,
                    JsonObject query,
                    FindOptions options)
Find matching documents in the specified collection, specifying options. 
 | 
MongoClient | 
MongoClient.findOneAndDeleteWithOptions(String collection,
                           JsonObject query,
                           FindOptions findOptions)
Find a single matching document in the specified collection and delete it. 
 | 
MongoClient | 
MongoClient.findOneAndDeleteWithOptions(String collection,
                           JsonObject query,
                           FindOptions findOptions,
                           Handler<AsyncResult<JsonObject>> resultHandler)
Find a single matching document in the specified collection and delete it. 
 | 
MongoClient | 
MongoClient.findOneAndReplaceWithOptions(String collection,
                            JsonObject query,
                            JsonObject replace,
                            FindOptions findOptions,
                            UpdateOptions updateOptions)
Find a single matching document in the specified collection and replace it. 
 | 
MongoClient | 
MongoClient.findOneAndReplaceWithOptions(String collection,
                            JsonObject query,
                            JsonObject replace,
                            FindOptions findOptions,
                            UpdateOptions updateOptions,
                            Handler<AsyncResult<JsonObject>> resultHandler)
Find a single matching document in the specified collection and replace it. 
 | 
MongoClient | 
MongoClient.findOneAndUpdateWithOptions(String collection,
                           JsonObject query,
                           JsonObject update,
                           FindOptions findOptions,
                           UpdateOptions updateOptions)
Find a single matching document in the specified collection and update it. 
 | 
MongoClient | 
MongoClient.findOneAndUpdateWithOptions(String collection,
                           JsonObject query,
                           JsonObject update,
                           FindOptions findOptions,
                           UpdateOptions updateOptions,
                           Handler<AsyncResult<JsonObject>> resultHandler)
Find a single matching document in the specified collection and update it. 
 | 
MongoClient | 
MongoClient.findWithOptions(String collection,
               JsonObject query,
               FindOptions options)
Find matching documents in the specified collection, specifying options 
 | 
MongoClient | 
MongoClient.findWithOptions(String collection,
               JsonObject query,
               FindOptions options,
               Handler<AsyncResult<List<JsonObject>>> resultHandler)
Find matching documents in the specified collection, specifying options 
 | 
Single<JsonObject> | 
MongoClient.rxFindOneAndDeleteWithOptions(String collection,
                             JsonObject query,
                             FindOptions findOptions)
Find a single matching document in the specified collection and delete it. 
 | 
Single<JsonObject> | 
MongoClient.rxFindOneAndReplaceWithOptions(String collection,
                              JsonObject query,
                              JsonObject replace,
                              FindOptions findOptions,
                              UpdateOptions updateOptions)
Find a single matching document in the specified collection and replace it. 
 | 
Single<JsonObject> | 
MongoClient.rxFindOneAndUpdateWithOptions(String collection,
                             JsonObject query,
                             JsonObject update,
                             FindOptions findOptions,
                             UpdateOptions updateOptions)
Find a single matching document in the specified collection and update it. 
 | 
Single<List<JsonObject>> | 
MongoClient.rxFindWithOptions(String collection,
                 JsonObject query,
                 FindOptions options)
Find matching documents in the specified collection, specifying options 
 | 
| Modifier and Type | Method and Description | 
|---|---|
ReadStream<JsonObject> | 
MongoClient.findBatchWithOptions(String collection,
                    JsonObject query,
                    FindOptions options)
Find matching documents in the specified collection, specifying options. 
 | 
Maybe<JsonObject> | 
MongoClient.findOneAndDeleteWithOptions(String collection,
                           JsonObject query,
                           FindOptions findOptions)
Find a single matching document in the specified collection and delete it. 
 | 
Maybe<JsonObject> | 
MongoClient.findOneAndReplaceWithOptions(String collection,
                            JsonObject query,
                            JsonObject replace,
                            FindOptions findOptions,
                            UpdateOptions updateOptions)
Find a single matching document in the specified collection and replace it. 
 | 
Maybe<JsonObject> | 
MongoClient.findOneAndUpdateWithOptions(String collection,
                           JsonObject query,
                           JsonObject update,
                           FindOptions findOptions,
                           UpdateOptions updateOptions)
Find a single matching document in the specified collection and update it. 
 | 
Single<List<JsonObject>> | 
MongoClient.findWithOptions(String collection,
               JsonObject query,
               FindOptions options)
Find matching documents in the specified collection, specifying options 
 | 
Maybe<JsonObject> | 
MongoClient.rxFindOneAndDeleteWithOptions(String collection,
                             JsonObject query,
                             FindOptions findOptions)
Find a single matching document in the specified collection and delete it. 
 | 
Maybe<JsonObject> | 
MongoClient.rxFindOneAndReplaceWithOptions(String collection,
                              JsonObject query,
                              JsonObject replace,
                              FindOptions findOptions,
                              UpdateOptions updateOptions)
Find a single matching document in the specified collection and replace it. 
 | 
Maybe<JsonObject> | 
MongoClient.rxFindOneAndUpdateWithOptions(String collection,
                             JsonObject query,
                             JsonObject update,
                             FindOptions findOptions,
                             UpdateOptions updateOptions)
Find a single matching document in the specified collection and update it. 
 | 
Single<List<JsonObject>> | 
MongoClient.rxFindWithOptions(String collection,
                 JsonObject query,
                 FindOptions options)
Find matching documents in the specified collection, specifying options 
 | 
Copyright © 2021 Eclipse. All rights reserved.