TResult
- The type of the result.public interface ListDatabasesIterable<TResult> extends MongoIterable<TResult>
Modifier and Type | Method and Description |
---|---|
ListDatabasesIterable<TResult> |
batchSize(int batchSize)
Sets the number of documents to return per batch.
|
ListDatabasesIterable<TResult> |
filter(Bson filter)
Sets the query filter to apply to the returned database names.
|
ListDatabasesIterable<TResult> |
maxTime(long maxTime,
java.util.concurrent.TimeUnit timeUnit)
Sets the maximum execution time on the server for this operation.
|
ListDatabasesIterable<TResult> |
nameOnly(java.lang.Boolean nameOnly)
Sets the nameOnly flag that indicates whether the command should return just the database names or return the database names and
size information.
|
ListDatabasesIterable<TResult> maxTime(long maxTime, java.util.concurrent.TimeUnit timeUnit)
maxTime
- the max timetimeUnit
- the time unit, which may not be nullListDatabasesIterable<TResult> batchSize(int batchSize)
batchSize
in interface MongoIterable<TResult>
batchSize
- the batch sizeListDatabasesIterable<TResult> filter(Bson filter)
filter
- the filter, which may be null.ListDatabasesIterable<TResult> nameOnly(java.lang.Boolean nameOnly)
nameOnly
- the nameOnly flag, which may be null