| Package | Description |
|---|---|
| io.quarkus.mongodb | |
| io.quarkus.mongodb.impl | |
| io.quarkus.mongodb.reactive |
| Modifier and Type | Method and Description |
|---|---|
DatabaseListOptions |
DatabaseListOptions.filter(org.bson.conversions.Bson filter)
Sets the query filter to apply to the returned database names.
|
DatabaseListOptions |
DatabaseListOptions.maxTime(long maxTime,
TimeUnit timeUnit)
Sets the maximum execution time on the server for this operation.
|
DatabaseListOptions |
DatabaseListOptions.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.
|
| Modifier and Type | Method and Description |
|---|---|
<T> io.smallrye.mutiny.Multi<T> |
ReactiveMongoClientImpl.listDatabases(Class<T> clazz,
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(com.mongodb.reactivestreams.client.ClientSession clientSession,
DatabaseListOptions options) |
io.smallrye.mutiny.Multi<org.bson.Document> |
ReactiveMongoClientImpl.listDatabases(DatabaseListOptions options) |
| Modifier and Type | Method and Description |
|---|---|
<T> io.smallrye.mutiny.Multi<T> |
ReactiveMongoClient.listDatabases(Class<T> clazz,
DatabaseListOptions options)
Gets the list of databases.
|
<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(com.mongodb.reactivestreams.client.ClientSession clientSession,
DatabaseListOptions options)
Gets the list of databases as a stream.
|
io.smallrye.mutiny.Multi<org.bson.Document> |
ReactiveMongoClient.listDatabases(DatabaseListOptions options)
Gets the list of database descriptors.
|
Copyright © 2021 JBoss by Red Hat. All rights reserved.