Uses of Class
io.quarkus.mongodb.DatabaseListOptions
-
Packages that use DatabaseListOptions Package Description io.quarkus.mongodb io.quarkus.mongodb.impl io.quarkus.mongodb.reactive -
-
Uses of DatabaseListOptions in io.quarkus.mongodb
Methods in io.quarkus.mongodb that return DatabaseListOptions Modifier and Type Method Description DatabaseListOptionsDatabaseListOptions. filter(org.bson.conversions.Bson filter)Sets the query filter to apply to the returned database names.DatabaseListOptionsDatabaseListOptions. maxTime(long maxTime, TimeUnit timeUnit)Sets the maximum execution time on the server for this operation.DatabaseListOptionsDatabaseListOptions. nameOnly(boolean nameOnly)Sets the nameOnly flag that indicates whether the command should return just the database names or return the database names and size information. -
Uses of DatabaseListOptions in io.quarkus.mongodb.impl
Methods in io.quarkus.mongodb.impl with parameters of type DatabaseListOptions Modifier and Type Method Description io.smallrye.mutiny.Multi<org.bson.Document>ReactiveMongoClientImpl. listDatabases(com.mongodb.reactivestreams.client.ClientSession clientSession, DatabaseListOptions options)<T> io.smallrye.mutiny.Multi<T>ReactiveMongoClientImpl. listDatabases(com.mongodb.reactivestreams.client.ClientSession clientSession, Class<T> clazz, DatabaseListOptions options)io.smallrye.mutiny.Multi<org.bson.Document>ReactiveMongoClientImpl. listDatabases(DatabaseListOptions options)<T> io.smallrye.mutiny.Multi<T>ReactiveMongoClientImpl. listDatabases(Class<T> clazz, DatabaseListOptions options) -
Uses of DatabaseListOptions in io.quarkus.mongodb.reactive
Methods in io.quarkus.mongodb.reactive with parameters of type DatabaseListOptions Modifier and Type Method Description io.smallrye.mutiny.Multi<org.bson.Document>ReactiveMongoClient. listDatabases(com.mongodb.reactivestreams.client.ClientSession clientSession, DatabaseListOptions options)Gets the list of databases as a stream.<T> io.smallrye.mutiny.Multi<T>ReactiveMongoClient. listDatabases(com.mongodb.reactivestreams.client.ClientSession clientSession, Class<T> clazz, DatabaseListOptions options)Gets the list of databases.io.smallrye.mutiny.Multi<org.bson.Document>ReactiveMongoClient. listDatabases(DatabaseListOptions options)Gets the list of database descriptors.<T> io.smallrye.mutiny.Multi<T>ReactiveMongoClient. listDatabases(Class<T> clazz, DatabaseListOptions options)Gets the list of databases.
-