TResult
- The type of the result.public interface AggregatePublisher<TResult>
extends org.reactivestreams.Publisher<TResult>
Modifier and Type | Method and Description |
---|---|
AggregatePublisher<TResult> |
allowDiskUse(Boolean allowDiskUse)
Enables writing to temporary files.
|
AggregatePublisher<TResult> |
bypassDocumentValidation(Boolean bypassDocumentValidation)
Sets the bypass document level validation flag.
|
AggregatePublisher<TResult> |
collation(com.mongodb.client.model.Collation collation)
Sets the collation options
|
AggregatePublisher<TResult> |
maxTime(long maxTime,
TimeUnit timeUnit)
Sets the maximum execution time on the server for this operation.
|
org.reactivestreams.Publisher<Success> |
toCollection()
Aggregates documents according to the specified aggregation pipeline, which must end with a $out stage.
|
AggregatePublisher<TResult> |
useCursor(Boolean useCursor)
Deprecated.
There is no replacement for this. Applications can assume that the driver will use a cursor for server versions
that support it (>= 2.6). The driver will ignore this as of MongoDB 3.6, which does not support inline results for the aggregate
command.
|
AggregatePublisher<TResult> allowDiskUse(Boolean allowDiskUse)
allowDiskUse
- true if writing to temporary files is enabledAggregatePublisher<TResult> maxTime(long maxTime, TimeUnit timeUnit)
maxTime
- the max timetimeUnit
- the time unit, which may not be null@Deprecated AggregatePublisher<TResult> useCursor(Boolean useCursor)
useCursor
- whether the server should use a cursor to return resultsAggregatePublisher<TResult> bypassDocumentValidation(Boolean bypassDocumentValidation)
Note: This only applies when an $out stage is specified
.bypassDocumentValidation
- If true, allows the write to opt-out of document level validation.org.reactivestreams.Publisher<Success> toCollection()
AggregatePublisher<TResult> collation(com.mongodb.client.model.Collation collation)
A null value represents the server default.
collation
- the collation options to use