TResult
- The type of the result.public interface DistinctPublisher<TResult>
extends org.reactivestreams.Publisher<TResult>
Modifier and Type | Method and Description |
---|---|
DistinctPublisher<TResult> |
batchSize(int batchSize)
Sets the number of documents to return per batch.
|
DistinctPublisher<TResult> |
collation(Collation collation)
Sets the collation options
|
DistinctPublisher<TResult> |
filter(Bson filter)
Sets the query filter to apply to the query.
|
org.reactivestreams.Publisher<TResult> |
first()
Helper to return a publisher limited to the first result.
|
DistinctPublisher<TResult> |
maxTime(long maxTime,
TimeUnit timeUnit)
Sets the maximum execution time on the server for this operation.
|
DistinctPublisher<TResult> filter(Bson filter)
filter
- the filter, which may be null.DistinctPublisher<TResult> maxTime(long maxTime, TimeUnit timeUnit)
maxTime
- the max timetimeUnit
- the time unit, which may not be nullDistinctPublisher<TResult> collation(Collation collation)
A null value represents the server default.
collation
- the collation options to useDistinctPublisher<TResult> batchSize(int batchSize)
Overrides the Subscription.request(long)
value for setting the batch size, allowing for fine grained
control over the underlying cursor.
batchSize
- the batch sizeorg.reactivestreams.Publisher<TResult> first()