Uses of Class
io.quarkus.mongodb.AggregateOptions
-
Packages that use AggregateOptions Package Description io.quarkus.mongodb io.quarkus.mongodb.impl io.quarkus.mongodb.reactive -
-
Uses of AggregateOptions in io.quarkus.mongodb
Methods in io.quarkus.mongodb that return AggregateOptions Modifier and Type Method Description AggregateOptionsAggregateOptions. allowDiskUse(boolean allowDiskUse)Enables writing to temporary files.AggregateOptionsAggregateOptions. batchSize(int size)Sets the number of documents to return per batch.AggregateOptionsAggregateOptions. bypassDocumentValidation(boolean bypassDocumentValidation)Sets the bypass document level validation flag.AggregateOptionsAggregateOptions. collation(com.mongodb.client.model.Collation collation)Sets the collation optionsAggregateOptionsAggregateOptions. comment(String comment)Sets the comment to the aggregation.AggregateOptionsAggregateOptions. hint(org.bson.conversions.Bson hint)Sets the hint for which index to use.AggregateOptionsAggregateOptions. maxAwaitTime(long maxAwaitTime, TimeUnit timeUnit)The maximum amount of time for the server to wait on new documents to satisfy a$changeStreamaggregation.AggregateOptionsAggregateOptions. maxTime(long maxTime, TimeUnit timeUnit)Sets the maximum execution time on the server for this operation. -
Uses of AggregateOptions in io.quarkus.mongodb.impl
Methods in io.quarkus.mongodb.impl with parameters of type AggregateOptions Modifier and Type Method Description io.smallrye.mutiny.Multi<T>ReactiveMongoCollectionImpl. aggregate(com.mongodb.reactivestreams.client.ClientSession clientSession, List<? extends org.bson.conversions.Bson> pipeline, AggregateOptions options)<D> io.smallrye.mutiny.Multi<D>ReactiveMongoCollectionImpl. aggregate(com.mongodb.reactivestreams.client.ClientSession clientSession, List<? extends org.bson.conversions.Bson> pipeline, Class<D> clazz, AggregateOptions options)io.smallrye.mutiny.Multi<T>ReactiveMongoCollectionImpl. aggregate(List<? extends org.bson.conversions.Bson> pipeline, AggregateOptions options)<D> io.smallrye.mutiny.Multi<D>ReactiveMongoCollectionImpl. aggregate(List<? extends org.bson.conversions.Bson> pipeline, Class<D> clazz, AggregateOptions options)io.smallrye.mutiny.Multi<org.bson.Document>ReactiveMongoDatabaseImpl. aggregate(com.mongodb.reactivestreams.client.ClientSession clientSession, List<? extends org.bson.conversions.Bson> pipeline, AggregateOptions options)<T> io.smallrye.mutiny.Multi<T>ReactiveMongoDatabaseImpl. aggregate(com.mongodb.reactivestreams.client.ClientSession clientSession, List<? extends org.bson.conversions.Bson> pipeline, Class<T> clazz, AggregateOptions options)io.smallrye.mutiny.Multi<org.bson.Document>ReactiveMongoDatabaseImpl. aggregate(List<? extends org.bson.conversions.Bson> pipeline, AggregateOptions options)<T> io.smallrye.mutiny.Multi<T>ReactiveMongoDatabaseImpl. aggregate(List<? extends org.bson.conversions.Bson> pipeline, Class<T> clazz, AggregateOptions options) -
Uses of AggregateOptions in io.quarkus.mongodb.reactive
Methods in io.quarkus.mongodb.reactive with parameters of type AggregateOptions Modifier and Type Method Description io.smallrye.mutiny.Multi<T>ReactiveMongoCollection. aggregate(com.mongodb.reactivestreams.client.ClientSession clientSession, List<? extends org.bson.conversions.Bson> pipeline, AggregateOptions options)Aggregates documents according to the specified aggregation pipeline.<D> io.smallrye.mutiny.Multi<D>ReactiveMongoCollection. aggregate(com.mongodb.reactivestreams.client.ClientSession clientSession, List<? extends org.bson.conversions.Bson> pipeline, Class<D> clazz, AggregateOptions options)Aggregates documents according to the specified aggregation pipeline.io.smallrye.mutiny.Multi<T>ReactiveMongoCollection. aggregate(List<? extends org.bson.conversions.Bson> pipeline, AggregateOptions options)Aggregates documents according to the specified aggregation pipeline.<D> io.smallrye.mutiny.Multi<D>ReactiveMongoCollection. aggregate(List<? extends org.bson.conversions.Bson> pipeline, Class<D> clazz, AggregateOptions options)Aggregates documents according to the specified aggregation pipeline.io.smallrye.mutiny.Multi<org.bson.Document>ReactiveMongoDatabase. aggregate(com.mongodb.reactivestreams.client.ClientSession clientSession, List<? extends org.bson.conversions.Bson> pipeline, AggregateOptions options)Runs an aggregation framework pipeline on the database for pipeline stages that do not require an underlying collection, such as$currentOpand$listLocalSessions.<T> io.smallrye.mutiny.Multi<T>ReactiveMongoDatabase. aggregate(com.mongodb.reactivestreams.client.ClientSession clientSession, List<? extends org.bson.conversions.Bson> pipeline, Class<T> clazz, AggregateOptions options)Runs an aggregation framework pipeline on the database for pipeline stages that do not require an underlying collection, such as$currentOpand$listLocalSessions.io.smallrye.mutiny.Multi<org.bson.Document>ReactiveMongoDatabase. aggregate(List<? extends org.bson.conversions.Bson> pipeline, AggregateOptions options)Runs an aggregation framework pipeline on the database for pipeline stages that do not require an underlying collection, such as$currentOpand$listLocalSessions.<T> io.smallrye.mutiny.Multi<T>ReactiveMongoDatabase. aggregate(List<? extends org.bson.conversions.Bson> pipeline, Class<T> clazz, AggregateOptions options)Runs an aggregation framework pipeline on the database for pipeline stages that do not require an underlying collection, such as$currentOpand$listLocalSessions.
-