TResult
- The type of the result.MongoIterable<TResult>
public interface DistinctIterable<TResult> extends MongoIterable<TResult>
Modifier and Type | Method | Description |
---|---|---|
DistinctIterable<TResult> |
batchSize(int batchSize) |
Sets the number of documents to return per batch.
|
DistinctIterable<TResult> |
collation(Collation collation) |
Sets the collation options
|
DistinctIterable<TResult> |
filter(Bson filter) |
Sets the query filter to apply to the query.
|
DistinctIterable<TResult> |
maxTime(long maxTime,
TimeUnit timeUnit) |
Sets the maximum execution time on the server for this operation.
|
batchCursor, first, forEach, getBatchSize, into, map
DistinctIterable<TResult> filter(@Nullable Bson filter)
filter
- the filter, which may be null.DistinctIterable<TResult> maxTime(long maxTime, TimeUnit timeUnit)
maxTime
- the max timetimeUnit
- the time unit, which may not be nullDistinctIterable<TResult> batchSize(int batchSize)
batchSize
in interface MongoIterable<TResult>
batchSize
- the batch sizeDistinctIterable<TResult> collation(@Nullable Collation collation)
A null value represents the server default.
collation
- the collation options to use