Package com.mongodb.client.gridfs
Interface GridFSFindIterable
- All Superinterfaces:
Iterable<GridFSFile>
,MongoIterable<GridFSFile>
@Deprecated(since="2021-05-27")
public interface GridFSFindIterable
extends MongoIterable<GridFSFile>
Deprecated.
Usage of this API is not supported in AEM as a Cloud Service.
Iterable for the GridFS Files Collection.
- Since:
- 3.1
-
Method Summary
Modifier and TypeMethodDescriptionbatchSize
(int batchSize) Deprecated.Sets the number of documents to return per batch.Deprecated.Sets the collation optionsDeprecated.Sets the query filter to apply to the query.limit
(int limit) Deprecated.Sets the limit to apply.Deprecated.Sets the maximum execution time on the server for this operation.noCursorTimeout
(boolean noCursorTimeout) Deprecated.The server normally times out idle cursors after an inactivity period (10 minutes) to prevent excess memory use.skip
(int skip) Deprecated.Sets the number of documents to skip.Deprecated.Sets the sort criteria to apply to the query.Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
Method Details
-
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"));
- Parameters:
filter
- the filter, which may be null.- Returns:
- this
- See Also:
-
limit
Deprecated.Sets the limit to apply.- Parameters:
limit
- the limit, which may be null- Returns:
- this
-
skip
Deprecated.Sets the number of documents to skip.- Parameters:
skip
- the number of documents to skip- Returns:
- this
-
sort
Deprecated.Sets the sort criteria to apply to the query.- Parameters:
sort
- the sort criteria, which may be null.- Returns:
- this
-
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
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
-
batchSize
Deprecated.Sets the number of documents to return per batch.- Specified by:
batchSize
in interfaceMongoIterable<GridFSFile>
- Parameters:
batchSize
- the batch size- Returns:
- this
-
collation
Deprecated.Sets the collation optionsA null value represents the server default.
- Parameters:
collation
- the collation options to use- Returns:
- this
- Since:
- 3.4
-