TResult - The type of the result.public interface FindIterable<TResult> extends MongoIterable<TResult>
| Modifier and Type | Method and Description |
|---|---|
FindIterable<TResult> | batchSize(int batchSize) Sets the number of documents to return per batch. |
FindIterable<TResult> | collation(Collation collation) Sets the collation options |
FindIterable<TResult> | comment(java.lang.String comment) Sets the comment to the query. |
FindIterable<TResult> | cursorType(CursorType cursorType) Sets the cursor type. |
FindIterable<TResult> | filter(Bson filter) Sets the query filter to apply to the query. |
FindIterable<TResult> | hint(Bson hint) Sets the hint for which index to use. |
FindIterable<TResult> | limit(int limit) Sets the limit to apply. |
FindIterable<TResult> | max(Bson max) Sets the exclusive upper bound for a specific index. |
FindIterable<TResult> | maxAwaitTime(long maxAwaitTime, java.util.concurrent.TimeUnit timeUnit) The maximum amount of time for the server to wait on new documents to satisfy a tailable cursor query. |
FindIterable<TResult> | maxScan(long maxScan) Sets the maximum number of documents or index keys to scan when executing the query. |
FindIterable<TResult> | maxTime(long maxTime, java.util.concurrent.TimeUnit timeUnit) Sets the maximum execution time on the server for this operation. |
FindIterable<TResult> | min(Bson min) Sets the minimum inclusive lower bound for a specific index. |
FindIterable<TResult> | modifiers(Bson modifiers) Deprecated. use the individual setters instead |
FindIterable<TResult> | noCursorTimeout(boolean noCursorTimeout) The server normally times out idle cursors after an inactivity period (10 minutes) to prevent excess memory use. |
FindIterable<TResult> | oplogReplay(boolean oplogReplay) Users should not set this under normal circumstances. |
FindIterable<TResult> | partial(boolean partial) Get partial results from a sharded cluster if one or more shards are unreachable (instead of throwing an error). |
FindIterable<TResult> | projection(Bson projection) Sets a document describing the fields to return for all matching documents. |
FindIterable<TResult> | returnKey(boolean returnKey) Sets the returnKey. |
FindIterable<TResult> | showRecordId(boolean showRecordId) Sets the showRecordId. |
FindIterable<TResult> | skip(int skip) Sets the number of documents to skip. |
FindIterable<TResult> | snapshot(boolean snapshot) Sets the snapshot. |
FindIterable<TResult> | sort(Bson sort) Sets the sort criteria to apply to the query. |
FindIterable<TResult> filter(Bson filter)
filter - the filter, which may be null.FindIterable<TResult> limit(int limit)
limit - the limit, which may be nullFindIterable<TResult> skip(int skip)
skip - the number of documents to skipFindIterable<TResult> maxTime(long maxTime, java.util.concurrent.TimeUnit timeUnit)
maxTime - the max timetimeUnit - the time unit, which may not be nullFindIterable<TResult> maxAwaitTime(long maxAwaitTime, java.util.concurrent.TimeUnit timeUnit)
maxAwaitTime - the max await timetimeUnit - the time unit to return the result in@Deprecated FindIterable<TResult> modifiers(Bson modifiers)
modifiers - the query modifiers to apply, which may be null.FindIterable<TResult> projection(Bson projection)
projection - the project document, which may be null.FindIterable<TResult> sort(Bson sort)
sort - the sort criteria, which may be null.FindIterable<TResult> noCursorTimeout(boolean noCursorTimeout)
noCursorTimeout - true if cursor timeout is disabledFindIterable<TResult> oplogReplay(boolean oplogReplay)
oplogReplay - if oplog replay is enabledFindIterable<TResult> partial(boolean partial)
partial - if partial results for sharded clusters is enabledFindIterable<TResult> cursorType(CursorType cursorType)
cursorType - the cursor typeFindIterable<TResult> batchSize(int batchSize)
batchSize in interface MongoIterable<TResult>batchSize - the batch sizeFindIterable<TResult> collation(Collation collation)
A null value represents the server default.
collation - the collation options to useFindIterable<TResult> comment(java.lang.String comment)
comment - the commentFindIterable<TResult> hint(Bson hint)
hint - the hintFindIterable<TResult> max(Bson max)
max - the maxFindIterable<TResult> min(Bson min)
min - the minFindIterable<TResult> maxScan(long maxScan)
maxScan - the maxScanFindIterable<TResult> returnKey(boolean returnKey)
returnKey - the returnKeyFindIterable<TResult> showRecordId(boolean showRecordId)
$recordId to the returned documents.showRecordId - the showRecordIdFindIterable<TResult> snapshot(boolean snapshot)
snapshot - the snapshot