Interface ListDatabasesPublisher<TResult>
- Type Parameters:
TResult
- The type of the result.
- All Superinterfaces:
Publisher<TResult>
Publisher interface for ListDatabases.
- Since:
- 1.0
-
Method Summary
Modifier and TypeMethodDescriptionauthorizedDatabasesOnly
(Boolean authorizedDatabasesOnly) Sets the authorizedDatabasesOnly flag that indicates whether the command should return just the databases which the user is authorized to see.batchSize
(int batchSize) Sets the number of documents to return per batch.Sets the comment for this operation.Sets the comment for this operation.Sets the query filter to apply to the returned database names.first()
Helper to return a publisher limited to the first result.Sets the maximum execution time on the server for this operation.Sets the nameOnly flag that indicates whether the command should return just the database names or return the database names and size information.timeoutMode
(TimeoutMode timeoutMode) Sets the timeoutMode for the cursor.
-
Method Details
-
maxTime
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
- MongoDB documentation
- Max Time
-
filter
Sets the query filter to apply to the returned database names.- Parameters:
filter
- the filter, which may be null.- Returns:
- this
- Since:
- 1.7
- Since server release
- 3.4.2
-
nameOnly
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:
- 1.7
- Since server release
- 3.4.3
-
authorizedDatabasesOnly
Sets the authorizedDatabasesOnly flag that indicates whether the command should return just the databases which the user is authorized to see.- Parameters:
authorizedDatabasesOnly
- the authorizedDatabasesOnly flag, which may be null- Returns:
- this
- Since:
- 4.1
- Since server release
- 4.0
-
batchSize
Sets the number of documents to return per batch.Overrides the
Subscription.request(long)
value for setting the batch size, allowing for fine-grained control over the underlying cursor.- Parameters:
batchSize
- the batch size- Returns:
- this
- Since:
- 1.8
- MongoDB documentation
- Batch Size
-
comment
Sets 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
-
comment
Sets 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
Sets the timeoutMode for the cursor.Requires the
timeout
to be set, either in theMongoClientSettings
, viaMongoDatabase
or viaMongoCollection
- Parameters:
timeoutMode
- the timeout mode- Returns:
- this
- Since:
- 5.2
-
first
Helper to return a publisher limited to the first result.- Returns:
- a Publisher which will contain a single item.
- Since:
- 1.8
-