Package com.mongodb.client
Interface ListIndexesIterable<TResult>
-
- Type Parameters:
TResult- The type of the result.
- All Superinterfaces:
java.lang.Iterable<TResult>,MongoIterable<TResult>
public interface ListIndexesIterable<TResult> extends MongoIterable<TResult>
Iterable for ListIndexes.- Since:
- 3.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListIndexesIterable<TResult>batchSize(int batchSize)Sets the number of documents to return per batch.ListIndexesIterable<TResult>maxTime(long maxTime, java.util.concurrent.TimeUnit timeUnit)Sets the maximum execution time on the server for this operation.
-
-
-
Method Detail
-
maxTime
ListIndexesIterable<TResult> maxTime(long maxTime, java.util.concurrent.TimeUnit timeUnit)
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
ListIndexesIterable<TResult> batchSize(int batchSize)
Sets the number of documents to return per batch.- Specified by:
batchSizein interfaceMongoIterable<TResult>- Parameters:
batchSize- the batch size- Returns:
- this
-
-