AggregateIterable<TDocument> |
MongoCollection.aggregate(ClientSession clientSession,
List<? extends Bson> pipeline) |
Deprecated.
Aggregates documents according to the specified aggregation pipeline.
|
<TResult> AggregateIterable<TResult> |
MongoCollection.aggregate(ClientSession clientSession,
List<? extends Bson> pipeline,
Class<TResult> resultClass) |
Deprecated.
Aggregates documents according to the specified aggregation pipeline.
|
AggregateIterable<TDocument> |
MongoCollection.aggregate(List<? extends Bson> pipeline) |
Deprecated.
Aggregates documents according to the specified aggregation pipeline.
|
<TResult> AggregateIterable<TResult> |
MongoCollection.aggregate(List<? extends Bson> pipeline,
Class<TResult> resultClass) |
Deprecated.
Aggregates documents according to the specified aggregation pipeline.
|
AggregateIterable<Document> |
MongoDatabase.aggregate(ClientSession clientSession,
List<? extends Bson> pipeline) |
Deprecated.
Runs an aggregation framework pipeline on the database for pipeline stages
that do not require an underlying collection, such as $currentOp and $listLocalSessions .
|
<TResult> AggregateIterable<TResult> |
MongoDatabase.aggregate(ClientSession clientSession,
List<? extends Bson> pipeline,
Class<TResult> resultClass) |
Deprecated.
Runs an aggregation framework pipeline on the database for pipeline stages
that do not require an underlying collection, such as $currentOp and $listLocalSessions .
|
AggregateIterable<Document> |
MongoDatabase.aggregate(List<? extends Bson> pipeline) |
Deprecated.
Runs an aggregation framework pipeline on the database for pipeline stages
that do not require an underlying collection, such as $currentOp and $listLocalSessions .
|
<TResult> AggregateIterable<TResult> |
MongoDatabase.aggregate(List<? extends Bson> pipeline,
Class<TResult> resultClass) |
Deprecated.
Runs an aggregation framework pipeline on the database for pipeline stages
that do not require an underlying collection, such as $currentOp and $listLocalSessions .
|
AggregateIterable<TResult> |
AggregateIterable.allowDiskUse(Boolean allowDiskUse) |
Deprecated.
Enables writing to temporary files.
|
AggregateIterable<TResult> |
AggregateIterable.batchSize(int batchSize) |
Deprecated.
Sets the number of documents to return per batch.
|
AggregateIterable<TResult> |
AggregateIterable.bypassDocumentValidation(Boolean bypassDocumentValidation) |
Deprecated.
Sets the bypass document level validation flag.
|
AggregateIterable<TResult> |
AggregateIterable.collation(Collation collation) |
Deprecated.
Sets the collation options
|
AggregateIterable<TResult> |
AggregateIterable.comment(String comment) |
Deprecated.
Sets the comment to the aggregation.
|
AggregateIterable<TResult> |
AggregateIterable.hint(Bson hint) |
Deprecated.
Sets the hint for which index to use.
|
AggregateIterable<TResult> |
AggregateIterable.maxAwaitTime(long maxAwaitTime,
TimeUnit timeUnit) |
Deprecated.
The maximum amount of time for the server to wait on new documents to satisfy a $changeStream aggregation.
|
AggregateIterable<TResult> |
AggregateIterable.maxTime(long maxTime,
TimeUnit timeUnit) |
Deprecated.
Sets the maximum execution time on the server for this operation.
|
AggregateIterable<TResult> |
AggregateIterable.useCursor(Boolean useCursor) |
Deprecated.
|