Package com.mongodb.client
Interface ListDatabasesIterable<TResult>
-
- Type Parameters:
TResult
- The type of the result.
- All Superinterfaces:
java.lang.Iterable<TResult>
,MongoIterable<TResult>
@Deprecated(since="2021-05-27") public interface ListDatabasesIterable<TResult> extends MongoIterable<TResult>
Deprecated.Usage of this API is not supported in AEM as a Cloud Service.Iterable for ListDatabases.- Since:
- 3.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description ListDatabasesIterable<TResult>
batchSize(int batchSize)
Deprecated.Sets the number of documents to return per batch.ListDatabasesIterable<TResult>
filter(Bson filter)
Deprecated.Sets the query filter to apply to the returned database names.ListDatabasesIterable<TResult>
maxTime(long maxTime, java.util.concurrent.TimeUnit timeUnit)
Deprecated.Sets the maximum execution time on the server for this operation.ListDatabasesIterable<TResult>
nameOnly(java.lang.Boolean nameOnly)
Deprecated.Sets the nameOnly flag that indicates whether the command should return just the database names or return the database names and size information.
-
-
-
Method Detail
-
maxTime
ListDatabasesIterable<TResult> maxTime(long maxTime, java.util.concurrent.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
-
batchSize
ListDatabasesIterable<TResult> batchSize(int batchSize)
Deprecated.Sets the number of documents to return per batch.- Specified by:
batchSize
in interfaceMongoIterable<TResult>
- Parameters:
batchSize
- the batch size- Returns:
- this
-
filter
ListDatabasesIterable<TResult> filter(@Nullable Bson filter)
Deprecated.Sets the query filter to apply to the returned database names.- Parameters:
filter
- the filter, which may be null.- Returns:
- this
- Since:
- 3.6
-
nameOnly
ListDatabasesIterable<TResult> nameOnly(@Nullable java.lang.Boolean nameOnly)
Deprecated.Sets the nameOnly flag that indicates whether the command should return just the database names or return the database names and size information.- Parameters:
nameOnly
- the nameOnly flag, which may be null- Returns:
- this
- Since:
- 3.6
-
-