| Package | Description |
|---|---|
| io.quarkus.mongodb | |
| io.quarkus.mongodb.impl | |
| io.quarkus.mongodb.reactive |
| Modifier and Type | Method and Description |
|---|---|
FindOptions |
FindOptions.collation(com.mongodb.client.model.Collation collation)
Sets the collation options
|
FindOptions |
FindOptions.comment(String comment)
Sets the comment to the query.
|
FindOptions |
FindOptions.cursorType(com.mongodb.CursorType cursorType)
Sets the cursor type.
|
FindOptions |
FindOptions.filter(org.bson.conversions.Bson filter)
Sets the query filter to apply to the query.
|
FindOptions |
FindOptions.hint(org.bson.conversions.Bson hint)
Sets the hint for which index to use.
|
FindOptions |
FindOptions.limit(int limit)
Sets the limit to apply.
|
FindOptions |
FindOptions.max(org.bson.conversions.Bson max)
Sets the exclusive upper bound for a specific index.
|
FindOptions |
FindOptions.maxAwaitTime(long maxAwaitTime,
TimeUnit timeUnit)
The maximum amount of time for the server to wait on new documents to satisfy a tailable cursor
query.
|
FindOptions |
FindOptions.maxTime(long maxTime,
TimeUnit timeUnit)
Sets the maximum execution time on the server for this operation.
|
FindOptions |
FindOptions.min(org.bson.conversions.Bson min)
Sets the minimum inclusive lower bound for a specific index.
|
FindOptions |
FindOptions.noCursorTimeout(boolean noCursorTimeout)
The server normally times out idle cursors after an inactivity period (10 minutes)
to prevent excess memory use.
|
FindOptions |
FindOptions.oplogReplay(boolean oplogReplay)
Users should not set this under normal circumstances.
|
FindOptions |
FindOptions.partial(boolean partial)
Get partial results from a sharded cluster if one or more shards are unreachable (instead of throwing an error).
|
FindOptions |
FindOptions.projection(org.bson.conversions.Bson projection)
Sets a document describing the fields to return for all matching documents.
|
FindOptions |
FindOptions.returnKey(boolean returnKey)
Sets the returnKey.
|
FindOptions |
FindOptions.showRecordId(boolean showRecordId)
Sets the showRecordId.
|
FindOptions |
FindOptions.skip(int skip)
Sets the number of documents to skip.
|
FindOptions |
FindOptions.sort(org.bson.conversions.Bson sort)
Sets the sort criteria to apply to the query.
|
| Modifier and Type | Method and Description |
|---|---|
<D> io.smallrye.mutiny.Multi<D> |
ReactiveMongoCollectionImpl.find(org.bson.conversions.Bson filter,
Class<D> clazz,
FindOptions options) |
io.smallrye.mutiny.Multi<T> |
ReactiveMongoCollectionImpl.find(org.bson.conversions.Bson filter,
FindOptions options) |
<D> io.smallrye.mutiny.Multi<D> |
ReactiveMongoCollectionImpl.find(Class<D> clazz,
FindOptions options) |
<D> io.smallrye.mutiny.Multi<D> |
ReactiveMongoCollectionImpl.find(com.mongodb.reactivestreams.client.ClientSession clientSession,
org.bson.conversions.Bson filter,
Class<D> clazz,
FindOptions options) |
io.smallrye.mutiny.Multi<T> |
ReactiveMongoCollectionImpl.find(com.mongodb.reactivestreams.client.ClientSession clientSession,
org.bson.conversions.Bson filter,
FindOptions options) |
<D> io.smallrye.mutiny.Multi<D> |
ReactiveMongoCollectionImpl.find(com.mongodb.reactivestreams.client.ClientSession clientSession,
Class<D> clazz,
FindOptions options) |
io.smallrye.mutiny.Multi<T> |
ReactiveMongoCollectionImpl.find(com.mongodb.reactivestreams.client.ClientSession clientSession,
FindOptions options) |
io.smallrye.mutiny.Multi<T> |
ReactiveMongoCollectionImpl.find(FindOptions options) |
| Modifier and Type | Method and Description |
|---|---|
<D> io.smallrye.mutiny.Multi<D> |
ReactiveMongoCollection.find(org.bson.conversions.Bson filter,
Class<D> clazz,
FindOptions options)
Finds all documents in the collection.
|
io.smallrye.mutiny.Multi<T> |
ReactiveMongoCollection.find(org.bson.conversions.Bson filter,
FindOptions options)
Finds all documents in the collection.
|
<D> io.smallrye.mutiny.Multi<D> |
ReactiveMongoCollection.find(Class<D> clazz,
FindOptions options)
Finds all documents in the collection.
|
<D> io.smallrye.mutiny.Multi<D> |
ReactiveMongoCollection.find(com.mongodb.reactivestreams.client.ClientSession clientSession,
org.bson.conversions.Bson filter,
Class<D> clazz,
FindOptions options)
Finds all documents in the collection.
|
io.smallrye.mutiny.Multi<T> |
ReactiveMongoCollection.find(com.mongodb.reactivestreams.client.ClientSession clientSession,
org.bson.conversions.Bson filter,
FindOptions options)
Finds all documents in the collection.
|
<D> io.smallrye.mutiny.Multi<D> |
ReactiveMongoCollection.find(com.mongodb.reactivestreams.client.ClientSession clientSession,
Class<D> clazz,
FindOptions options)
Finds all documents in the collection.
|
io.smallrye.mutiny.Multi<T> |
ReactiveMongoCollection.find(com.mongodb.reactivestreams.client.ClientSession clientSession,
FindOptions options)
Finds all documents in the collection.
|
io.smallrye.mutiny.Multi<T> |
ReactiveMongoCollection.find(FindOptions options)
Finds all documents in the collection.
|
Copyright © 2020 JBoss by Red Hat. All rights reserved.