Package | Description |
---|---|
io.vertx.rxjava.ext.mongo |
Modifier and Type | Field and Description |
---|---|
static TypeArg<MongoService> |
MongoService.__TYPE_ARG |
Modifier and Type | Method and Description |
---|---|
MongoService |
MongoService.bulkWrite(String collection,
List<io.vertx.ext.mongo.BulkOperation> operations,
io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.ext.mongo.MongoClientBulkWriteResult>> resultHandler) |
MongoService |
MongoService.bulkWriteWithOptions(String collection,
List<io.vertx.ext.mongo.BulkOperation> operations,
io.vertx.ext.mongo.BulkWriteOptions bulkWriteOptions,
io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.ext.mongo.MongoClientBulkWriteResult>> resultHandler) |
MongoService |
MongoService.count(String collection,
io.vertx.core.json.JsonObject query,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Long>> resultHandler) |
MongoService |
MongoService.createCollection(String collectionName,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Void>> resultHandler) |
static MongoService |
MongoService.createEventBusProxy(Vertx vertx,
String address)
Create a proxy to a service that is deployed somewhere on the event bus
|
MongoService |
MongoService.createIndex(String collection,
io.vertx.core.json.JsonObject key,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Void>> resultHandler) |
MongoService |
MongoService.createIndexWithOptions(String collection,
io.vertx.core.json.JsonObject key,
io.vertx.ext.mongo.IndexOptions options,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Void>> resultHandler) |
MongoService |
MongoService.distinct(String collection,
String fieldName,
String resultClassname,
io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.core.json.JsonArray>> resultHandler) |
MongoService |
MongoService.distinctWithQuery(String collection,
String fieldName,
String resultClassname,
io.vertx.core.json.JsonObject query,
io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.core.json.JsonArray>> resultHandler) |
MongoService |
MongoService.dropCollection(String collection,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Void>> resultHandler) |
MongoService |
MongoService.dropIndex(String collection,
String indexName,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Void>> resultHandler) |
MongoService |
MongoService.find(String collection,
io.vertx.core.json.JsonObject query,
io.vertx.core.Handler<io.vertx.core.AsyncResult<List<io.vertx.core.json.JsonObject>>> resultHandler) |
MongoService |
MongoService.findOne(String collection,
io.vertx.core.json.JsonObject query,
io.vertx.core.json.JsonObject fields,
io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.core.json.JsonObject>> resultHandler) |
MongoService |
MongoService.findOneAndDelete(String collection,
io.vertx.core.json.JsonObject query,
io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.core.json.JsonObject>> resultHandler) |
MongoService |
MongoService.findOneAndDeleteWithOptions(String collection,
io.vertx.core.json.JsonObject query,
io.vertx.ext.mongo.FindOptions findOptions,
io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.core.json.JsonObject>> resultHandler) |
MongoService |
MongoService.findOneAndReplace(String collection,
io.vertx.core.json.JsonObject query,
io.vertx.core.json.JsonObject replace,
io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.core.json.JsonObject>> resultHandler) |
MongoService |
MongoService.findOneAndReplaceWithOptions(String collection,
io.vertx.core.json.JsonObject query,
io.vertx.core.json.JsonObject update,
io.vertx.ext.mongo.FindOptions findOptions,
io.vertx.ext.mongo.UpdateOptions updateOptions,
io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.core.json.JsonObject>> resultHandler) |
MongoService |
MongoService.findOneAndUpdate(String collection,
io.vertx.core.json.JsonObject query,
io.vertx.core.json.JsonObject update,
io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.core.json.JsonObject>> resultHandler) |
MongoService |
MongoService.findOneAndUpdateWithOptions(String collection,
io.vertx.core.json.JsonObject query,
io.vertx.core.json.JsonObject update,
io.vertx.ext.mongo.FindOptions findOptions,
io.vertx.ext.mongo.UpdateOptions updateOptions,
io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.core.json.JsonObject>> resultHandler) |
MongoService |
MongoService.findWithOptions(String collection,
io.vertx.core.json.JsonObject query,
io.vertx.ext.mongo.FindOptions options,
io.vertx.core.Handler<io.vertx.core.AsyncResult<List<io.vertx.core.json.JsonObject>>> resultHandler) |
MongoService |
MongoService.getCollections(io.vertx.core.Handler<io.vertx.core.AsyncResult<List<String>>> resultHandler) |
MongoService |
MongoService.insert(String collection,
io.vertx.core.json.JsonObject document,
io.vertx.core.Handler<io.vertx.core.AsyncResult<String>> resultHandler) |
MongoService |
MongoService.insertWithOptions(String collection,
io.vertx.core.json.JsonObject document,
io.vertx.ext.mongo.WriteOption writeOption,
io.vertx.core.Handler<io.vertx.core.AsyncResult<String>> resultHandler) |
MongoService |
MongoService.listIndexes(String collection,
io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.core.json.JsonArray>> resultHandler) |
static MongoService |
MongoService.newInstance(io.vertx.ext.mongo.MongoService arg) |
MongoService |
MongoService.remove(String collection,
io.vertx.core.json.JsonObject query,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Void>> resultHandler)
Deprecated.
|
MongoService |
MongoService.removeDocument(String collection,
io.vertx.core.json.JsonObject query,
io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.ext.mongo.MongoClientDeleteResult>> resultHandler) |
MongoService |
MongoService.removeDocuments(String collection,
io.vertx.core.json.JsonObject query,
io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.ext.mongo.MongoClientDeleteResult>> resultHandler) |
MongoService |
MongoService.removeDocumentsWithOptions(String collection,
io.vertx.core.json.JsonObject query,
io.vertx.ext.mongo.WriteOption writeOption,
io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.ext.mongo.MongoClientDeleteResult>> resultHandler) |
MongoService |
MongoService.removeDocumentWithOptions(String collection,
io.vertx.core.json.JsonObject query,
io.vertx.ext.mongo.WriteOption writeOption,
io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.ext.mongo.MongoClientDeleteResult>> resultHandler) |
MongoService |
MongoService.removeOne(String collection,
io.vertx.core.json.JsonObject query,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Void>> resultHandler)
Deprecated.
|
MongoService |
MongoService.removeOneWithOptions(String collection,
io.vertx.core.json.JsonObject query,
io.vertx.ext.mongo.WriteOption writeOption,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Void>> resultHandler)
Deprecated.
|
MongoService |
MongoService.removeWithOptions(String collection,
io.vertx.core.json.JsonObject query,
io.vertx.ext.mongo.WriteOption writeOption,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Void>> resultHandler)
Deprecated.
|
MongoService |
MongoService.replace(String collection,
io.vertx.core.json.JsonObject query,
io.vertx.core.json.JsonObject replace,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Void>> resultHandler)
Deprecated.
|
MongoService |
MongoService.replaceDocuments(String collection,
io.vertx.core.json.JsonObject query,
io.vertx.core.json.JsonObject replace,
io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.ext.mongo.MongoClientUpdateResult>> resultHandler) |
MongoService |
MongoService.replaceDocumentsWithOptions(String collection,
io.vertx.core.json.JsonObject query,
io.vertx.core.json.JsonObject replace,
io.vertx.ext.mongo.UpdateOptions options,
io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.ext.mongo.MongoClientUpdateResult>> resultHandler) |
MongoService |
MongoService.replaceWithOptions(String collection,
io.vertx.core.json.JsonObject query,
io.vertx.core.json.JsonObject replace,
io.vertx.ext.mongo.UpdateOptions options,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Void>> resultHandler)
Deprecated.
|
MongoService |
MongoService.runCommand(String commandName,
io.vertx.core.json.JsonObject command,
io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.core.json.JsonObject>> resultHandler) |
MongoService |
MongoService.save(String collection,
io.vertx.core.json.JsonObject document,
io.vertx.core.Handler<io.vertx.core.AsyncResult<String>> resultHandler) |
MongoService |
MongoService.saveWithOptions(String collection,
io.vertx.core.json.JsonObject document,
io.vertx.ext.mongo.WriteOption writeOption,
io.vertx.core.Handler<io.vertx.core.AsyncResult<String>> resultHandler) |
MongoService |
MongoService.update(String collection,
io.vertx.core.json.JsonObject query,
io.vertx.core.json.JsonObject update,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Void>> resultHandler)
Deprecated.
|
MongoService |
MongoService.updateCollection(String collection,
io.vertx.core.json.JsonObject query,
io.vertx.core.json.JsonObject update,
io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.ext.mongo.MongoClientUpdateResult>> resultHandler) |
MongoService |
MongoService.updateCollectionWithOptions(String collection,
io.vertx.core.json.JsonObject query,
io.vertx.core.json.JsonObject update,
io.vertx.ext.mongo.UpdateOptions options,
io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.ext.mongo.MongoClientUpdateResult>> resultHandler) |
MongoService |
MongoService.updateWithOptions(String collection,
io.vertx.core.json.JsonObject query,
io.vertx.core.json.JsonObject update,
io.vertx.ext.mongo.UpdateOptions options,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Void>> resultHandler)
Deprecated.
|
Copyright © 2022 Eclipse. All rights reserved.