T - the document typeAsyncReadOperation<AsyncBatchCursor<T>>, ReadOperation<BatchCursor<T>>public class ListDatabasesOperation<T> extends Object implements AsyncReadOperation<AsyncBatchCursor<T>>, ReadOperation<BatchCursor<T>>
| Constructor | Description |
|---|---|
ListDatabasesOperation(Decoder<T> decoder) |
Construct a new instance.
|
| Modifier and Type | Method | Description |
|---|---|---|
BatchCursor<T> |
execute(ReadBinding binding) |
Executing this will return a list of all the databases names in the MongoDB instance.
|
void |
executeAsync(AsyncReadBinding binding,
SingleResultCallback<AsyncBatchCursor<T>> callback) |
General execute which can return anything of type T
|
ListDatabasesOperation<T> |
filter(BsonDocument filter) |
Sets the query filter to apply to the returned database names.
|
BsonDocument |
getFilter() |
Gets the query filter to apply to the returned database names.
|
long |
getMaxTime(TimeUnit timeUnit) |
Gets the maximum execution time on the server for this operation.
|
Boolean |
getNameOnly() |
Gets the nameOnly flag that indicates whether the command should return just the database names or return the database names and
size information.
|
ListDatabasesOperation<T> |
maxTime(long maxTime,
TimeUnit timeUnit) |
Sets the maximum execution time on the server for this operation.
|
ListDatabasesOperation<T> |
nameOnly(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.
|
public long getMaxTime(TimeUnit timeUnit)
timeUnit - the time unit to return the result inpublic ListDatabasesOperation<T> maxTime(long maxTime, TimeUnit timeUnit)
maxTime - the max timetimeUnit - the time unit, which may not be nullpublic ListDatabasesOperation<T> filter(BsonDocument filter)
filter - the filter, which may be null.public BsonDocument getFilter()
public ListDatabasesOperation<T> nameOnly(Boolean nameOnly)
nameOnly - the nameOnly flag, which may be nullpublic Boolean getNameOnly()
public BatchCursor<T> execute(ReadBinding binding)
execute in interface ReadOperation<T>binding - the binding.public void executeAsync(AsyncReadBinding binding, SingleResultCallback<AsyncBatchCursor<T>> callback)
AsyncReadOperationexecuteAsync in interface AsyncReadOperation<T>binding - the binding to execute in the context ofcallback - the callback to be called when the operation has been executed