Uses of Class
io.quarkus.mongodb.FindOptions

Packages that use FindOptions
  • Uses of FindOptions in io.quarkus.mongodb

    Methods in io.quarkus.mongodb that return FindOptions
    Modifier and Type
    Method
    Description
    FindOptions.batchSize(int size)
    Sets the number of documents to return per batch.
    FindOptions.collation(com.mongodb.client.model.Collation collation)
    Sets the collation options
    FindOptions.comment(String comment)
    Sets the comment to the query.
    FindOptions.cursorType(com.mongodb.CursorType cursorType)
    Sets the cursor type.
    FindOptions.filter(org.bson.conversions.Bson filter)
    Sets the query filter to apply to the query.
    FindOptions.hint(org.bson.conversions.Bson hint)
    Sets the hint for which index to use.
    FindOptions.limit(int limit)
    Sets the limit to apply.
    FindOptions.max(org.bson.conversions.Bson max)
    Sets the exclusive upper bound for a specific index.
    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.maxTime(long maxTime, TimeUnit timeUnit)
    Sets the maximum execution time on the server for this operation.
    FindOptions.min(org.bson.conversions.Bson min)
    Sets the minimum inclusive lower bound for a specific index.
    FindOptions.noCursorTimeout(boolean noCursorTimeout)
    The server normally times out idle cursors after an inactivity period (10 minutes) to prevent excess memory use.
    FindOptions.oplogReplay(boolean oplogReplay)
    Users should not set this under normal circumstances.
    FindOptions.partial(boolean partial)
    Get partial results from a sharded cluster if one or more shards are unreachable (instead of throwing an error).
    FindOptions.projection(org.bson.conversions.Bson projection)
    Sets a document describing the fields to return for all matching documents.
    FindOptions.returnKey(boolean returnKey)
    Sets the returnKey.
    FindOptions.showRecordId(boolean showRecordId)
    Sets the showRecordId.
    FindOptions.skip(int skip)
    Sets the number of documents to skip.
    FindOptions.sort(org.bson.conversions.Bson sort)
    Sets the sort criteria to apply to the query.
  • Uses of FindOptions in io.quarkus.mongodb.impl

    Methods in io.quarkus.mongodb.impl with parameters of type FindOptions
    Modifier and Type
    Method
    Description
    io.smallrye.mutiny.Multi<T>
    ReactiveMongoCollectionImpl.find(com.mongodb.reactivestreams.client.ClientSession clientSession, 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, org.bson.conversions.Bson filter, 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(FindOptions options)
     
    <D> io.smallrye.mutiny.Multi<D>
    ReactiveMongoCollectionImpl.find(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(org.bson.conversions.Bson filter, Class<D> clazz, FindOptions options)
     
  • Uses of FindOptions in io.quarkus.mongodb.reactive

    Methods in io.quarkus.mongodb.reactive with parameters of type FindOptions
    Modifier and Type
    Method
    Description
    io.smallrye.mutiny.Multi<T>
    ReactiveMongoCollection.find(com.mongodb.reactivestreams.client.ClientSession clientSession, 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, 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, org.bson.conversions.Bson filter, Class<D> clazz, FindOptions options)
    Finds all documents in the collection.
    io.smallrye.mutiny.Multi<T>
    ReactiveMongoCollection.find(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.
    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(org.bson.conversions.Bson filter, Class<D> clazz, FindOptions options)
    Finds all documents in the collection.