Package com.mongodb.async.client.gridfs
Interface GridFSFindIterable
-
- All Superinterfaces:
MongoIterable<GridFSFile>
@Deprecated public interface GridFSFindIterable extends MongoIterable<GridFSFile>
Deprecated.Prefer the Reactive Streams-based asynchronous driver (mongodb-driver-reactivestreams artifactId)Iterable for the GridFS Files Collection.- Since:
- 3.3
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description GridFSFindIterable
batchSize(int batchSize)
Deprecated.Sets the number of documents to return per batch.GridFSFindIterable
collation(Collation collation)
Deprecated.Sets the collation optionsGridFSFindIterable
filter(Bson filter)
Deprecated.Sets the query filter to apply to the query.GridFSFindIterable
limit(int limit)
Deprecated.Sets the limit to apply.GridFSFindIterable
maxTime(long maxTime, TimeUnit timeUnit)
Deprecated.Sets the maximum execution time on the server for this operation.GridFSFindIterable
noCursorTimeout(boolean noCursorTimeout)
Deprecated.The server normally times out idle cursors after an inactivity period (10 minutes) to prevent excess memory use.GridFSFindIterable
skip(int skip)
Deprecated.Sets the number of documents to skip.GridFSFindIterable
sort(Bson sort)
Deprecated.Sets the sort criteria to apply to the query.-
Methods inherited from interface com.mongodb.async.client.MongoIterable
batchCursor, first, forEach, getBatchSize, into, map
-
-
-
-
Method Detail
-
filter
GridFSFindIterable filter(@Nullable Bson filter)
Deprecated.Sets the query filter to apply to the query.Below is an example of filtering against the filename and some nested metadata that can also be stored along with the file data:
Filters.and(Filters.eq("filename", "mongodb.png"), Filters.eq("metadata.contentType", "image/png"));
-
limit
GridFSFindIterable limit(int limit)
Deprecated.Sets the limit to apply.- Parameters:
limit
- the limit, which may be null- Returns:
- this
- MongoDB documentation
- Limit
-
skip
GridFSFindIterable skip(int skip)
Deprecated.Sets the number of documents to skip.- Parameters:
skip
- the number of documents to skip- Returns:
- this
- MongoDB documentation
- Skip
-
sort
GridFSFindIterable sort(@Nullable Bson sort)
Deprecated.Sets the sort criteria to apply to the query.- Parameters:
sort
- the sort criteria, which may be null.- Returns:
- this
- MongoDB documentation
- Sort
-
noCursorTimeout
GridFSFindIterable noCursorTimeout(boolean noCursorTimeout)
Deprecated.The server normally times out idle cursors after an inactivity period (10 minutes) to prevent excess memory use. Set this option to prevent that.- Parameters:
noCursorTimeout
- true if cursor timeout is disabled- Returns:
- this
-
maxTime
GridFSFindIterable maxTime(long maxTime, TimeUnit timeUnit)
Deprecated.Sets the maximum execution time on the server for this operation.- Parameters:
maxTime
- the max timetimeUnit
- the time unit, which may not be null- Returns:
- this
- MongoDB documentation
- Max Time
-
batchSize
GridFSFindIterable batchSize(int batchSize)
Deprecated.Sets the number of documents to return per batch.- Specified by:
batchSize
in interfaceMongoIterable<GridFSFile>
- Parameters:
batchSize
- the batch size- Returns:
- this
- MongoDB documentation
- Batch Size
-
collation
GridFSFindIterable collation(@Nullable Collation collation)
Deprecated.Sets the collation optionsA null value represents the server default.
- Parameters:
collation
- the collation options to use- Returns:
- this
- Since:
- 3.4
- Since server release
- 3.4
-
-