suspend fun MongoClient.bulkWriteAwait(collection: String, operations: List<BulkOperation>): MongoClientBulkWriteResult?
Suspending version of method io.vertx.ext.mongo.MongoClient.bulkWrite |
|
suspend fun MongoClient.bulkWriteWithOptionsAwait(collection: String, operations: List<BulkOperation>, bulkWriteOptions: BulkWriteOptions): MongoClientBulkWriteResult?
Suspending version of method io.vertx.ext.mongo.MongoClient.bulkWriteWithOptions |
|
suspend fun MongoClient.countAwait(collection: String, query: JsonObject): Long
Suspending version of method io.vertx.ext.mongo.MongoClient.count |
|
suspend fun MongoClient.createCollectionAwait(collectionName: String): Unit
Suspending version of method io.vertx.ext.mongo.MongoClient.createCollection |
|
suspend fun MongoClient.createDefaultGridFsBucketServiceAwait(): MongoGridFsClient
Suspending version of method io.vertx.ext.mongo.MongoClient.createDefaultGridFsBucketService |
|
suspend fun MongoClient.createGridFsBucketServiceAwait(bucketName: String): MongoGridFsClient
Suspending version of method io.vertx.ext.mongo.MongoClient.createGridFsBucketService |
|
suspend fun MongoClient.createIndexAwait(collection: String, key: JsonObject): Unit
Suspending version of method io.vertx.ext.mongo.MongoClient.createIndex |
|
suspend fun MongoClient.createIndexWithOptionsAwait(collection: String, key: JsonObject, options: IndexOptions): Unit
Suspending version of method io.vertx.ext.mongo.MongoClient.createIndexWithOptions |
|
suspend fun MongoClient.createIndexesAwait(collection: String, indexes: List<IndexModel>): Unit
Suspending version of method io.vertx.ext.mongo.MongoClient.createIndexes |
|
suspend fun MongoClient.distinctAwait(collection: String, fieldName: String, resultClassname: String): JsonArray
Suspending version of method io.vertx.ext.mongo.MongoClient.distinct |
|
suspend fun MongoClient.distinctWithQueryAwait(collection: String, fieldName: String, resultClassname: String, query: JsonObject): JsonArray
Suspending version of method io.vertx.ext.mongo.MongoClient.distinctWithQuery |
|
suspend fun MongoClient.dropCollectionAwait(collection: String): Unit
Suspending version of method io.vertx.ext.mongo.MongoClient.dropCollection |
|
suspend fun MongoClient.dropIndexAwait(collection: String, indexName: String): Unit
Suspending version of method io.vertx.ext.mongo.MongoClient.dropIndex |
|
suspend fun MongoClient.findAwait(collection: String, query: JsonObject): List<JsonObject>
Suspending version of method io.vertx.ext.mongo.MongoClient.find |
|
suspend fun MongoClient.findOneAndDeleteAwait(collection: String, query: JsonObject): JsonObject?
Suspending version of method io.vertx.ext.mongo.MongoClient.findOneAndDelete |
|
suspend fun MongoClient.findOneAndDeleteWithOptionsAwait(collection: String, query: JsonObject, findOptions: FindOptions): JsonObject?
Suspending version of method io.vertx.ext.mongo.MongoClient.findOneAndDeleteWithOptions |
|
suspend fun MongoClient.findOneAndReplaceAwait(collection: String, query: JsonObject, replace: JsonObject): JsonObject?
Suspending version of method io.vertx.ext.mongo.MongoClient.findOneAndReplace |
|
suspend fun MongoClient.findOneAndReplaceWithOptionsAwait(collection: String, query: JsonObject, replace: JsonObject, findOptions: FindOptions, updateOptions: UpdateOptions): JsonObject?
Suspending version of method io.vertx.ext.mongo.MongoClient.findOneAndReplaceWithOptions |
|
suspend fun MongoClient.findOneAndUpdateAwait(collection: String, query: JsonObject, update: JsonObject): JsonObject?
Suspending version of method io.vertx.ext.mongo.MongoClient.findOneAndUpdate |
|
suspend fun MongoClient.findOneAndUpdateWithOptionsAwait(collection: String, query: JsonObject, update: JsonObject, findOptions: FindOptions, updateOptions: UpdateOptions): JsonObject?
Suspending version of method io.vertx.ext.mongo.MongoClient.findOneAndUpdateWithOptions |
|
suspend fun MongoClient.findOneAwait(collection: String, query: JsonObject, fields: JsonObject): JsonObject?
Suspending version of method io.vertx.ext.mongo.MongoClient.findOne |
|
suspend fun MongoClient.findWithOptionsAwait(collection: String, query: JsonObject, options: FindOptions): List<JsonObject>
Suspending version of method io.vertx.ext.mongo.MongoClient.findWithOptions |
|
suspend fun MongoClient.getCollectionsAwait(): List<String>
Suspending version of method io.vertx.ext.mongo.MongoClient.getCollections |
|
suspend fun MongoClient.insertAwait(collection: String, document: JsonObject): String?
Suspending version of method io.vertx.ext.mongo.MongoClient.insert |
|
suspend fun MongoClient.insertWithOptionsAwait(collection: String, document: JsonObject, writeOption: WriteOption): String?
Suspending version of method io.vertx.ext.mongo.MongoClient.insertWithOptions |
|
suspend fun MongoClient.listIndexesAwait(collection: String): JsonArray
Suspending version of method io.vertx.ext.mongo.MongoClient.listIndexes |
|
suspend fun MongoClient.removeDocumentAwait(collection: String, query: JsonObject): MongoClientDeleteResult?
Suspending version of method io.vertx.ext.mongo.MongoClient.removeDocument |
|
suspend fun MongoClient.removeDocumentWithOptionsAwait(collection: String, query: JsonObject, writeOption: WriteOption): MongoClientDeleteResult?
Suspending version of method io.vertx.ext.mongo.MongoClient.removeDocumentWithOptions |
|
suspend fun MongoClient.removeDocumentsAwait(collection: String, query: JsonObject): MongoClientDeleteResult?
Suspending version of method io.vertx.ext.mongo.MongoClient.removeDocuments |
|
suspend fun MongoClient.removeDocumentsWithOptionsAwait(collection: String, query: JsonObject, writeOption: WriteOption): MongoClientDeleteResult?
Suspending version of method io.vertx.ext.mongo.MongoClient.removeDocumentsWithOptions |
|
suspend fun MongoClient.replaceDocumentsAwait(collection: String, query: JsonObject, replace: JsonObject): MongoClientUpdateResult?
Suspending version of method io.vertx.ext.mongo.MongoClient.replaceDocuments |
|
suspend fun MongoClient.replaceDocumentsWithOptionsAwait(collection: String, query: JsonObject, replace: JsonObject, options: UpdateOptions): MongoClientUpdateResult?
Suspending version of method io.vertx.ext.mongo.MongoClient.replaceDocumentsWithOptions |
|
suspend fun MongoClient.runCommandAwait(commandName: String, command: JsonObject): JsonObject?
Suspending version of method io.vertx.ext.mongo.MongoClient.runCommand |
|
suspend fun MongoClient.saveAwait(collection: String, document: JsonObject): String?
Suspending version of method io.vertx.ext.mongo.MongoClient.save |
|
suspend fun MongoClient.saveWithOptionsAwait(collection: String, document: JsonObject, writeOption: WriteOption): String?
Suspending version of method io.vertx.ext.mongo.MongoClient.saveWithOptions |
|
suspend fun MongoClient.updateCollectionAwait(collection: String, query: JsonObject, update: JsonObject): MongoClientUpdateResult?
Suspending version of method io.vertx.ext.mongo.MongoClient.updateCollection |
|
suspend fun MongoClient.updateCollectionWithOptionsAwait(collection: String, query: JsonObject, update: JsonObject, options: UpdateOptions): MongoClientUpdateResult?
Suspending version of method io.vertx.ext.mongo.MongoClient.updateCollectionWithOptions |