Package com.mongodb.client
Interface ListIndexesIterable<TResult>
- Type Parameters:
- TResult- The type of the result.
- All Superinterfaces:
- Iterable<TResult>,- MongoIterable<TResult>
Iterable for ListIndexes.
- Since:
- 3.0
- 
Method SummaryModifier and TypeMethodDescriptionbatchSize(int batchSize) Sets the number of documents to return per batch.Sets the comment for this operation.comment(org.bson.BsonValue comment) Sets the comment for this operation.Sets the maximum execution time on the server for this operation.timeoutMode(com.mongodb.client.cursor.TimeoutMode timeoutMode) Sets the timeoutMode for the cursor.Methods inherited from interface java.lang.IterableforEach, spliterator
- 
Method Details- 
maxTimeSets the maximum execution time on the server for this operation.- Parameters:
- maxTime- the max time
- timeUnit- the time unit, which may not be null
- Returns:
- this
- MongoDB documentation
- Max Time
 
- 
batchSizeSets the number of documents to return per batch.- Specified by:
- batchSizein interface- MongoIterable<TResult>
- Parameters:
- batchSize- the batch size
- Returns:
- this
- MongoDB documentation
- Batch Size
 
- 
commentSets the comment for this operation. A null value means no comment is set.- Parameters:
- comment- the comment
- Returns:
- this
- Since:
- 4.6
- Since server release
- 4.4
 
- 
commentSets the comment for this operation. A null value means no comment is set.- Parameters:
- comment- the comment
- Returns:
- this
- Since:
- 4.6
- Since server release
- 4.4
 
- 
timeoutMode@Alpha(CLIENT) ListIndexesIterable<TResult> timeoutMode(com.mongodb.client.cursor.TimeoutMode timeoutMode) Sets the timeoutMode for the cursor.Requires the timeoutto be set, either in theMongoClientSettings, viaMongoDatabaseor viaMongoCollection- Parameters:
- timeoutMode- the timeout mode
- Returns:
- this
- Since:
- 5.2
 
 
-