Package com.mongodb.operation
Class DropDatabaseOperation
java.lang.Object
com.mongodb.operation.DropDatabaseOperation
- All Implemented Interfaces:
AsyncWriteOperation<Void>
,WriteOperation<Void>
@Deprecated
public class DropDatabaseOperation
extends Object
implements AsyncWriteOperation<Void>, WriteOperation<Void>
Deprecated.
Operation to drop a database in MongoDB. The
execute
method throws MongoCommandFailureException if something goes wrong, but
it will not throw an Exception if the collection does not exist before trying to drop it.- Since:
- 3.0
-
Constructor Summary
ConstructorsConstructorDescriptionDropDatabaseOperation
(String databaseName) Deprecated.DropDatabaseOperation
(String databaseName, WriteConcern writeConcern) Deprecated.Construct a new instance. -
Method Summary
Modifier and TypeMethodDescriptionexecute
(WriteBinding binding) Deprecated.General execute which can return anything of type Tvoid
executeAsync
(AsyncWriteBinding binding, SingleResultCallback<Void> callback) Deprecated.General execute which can return anything of type TDeprecated.Gets the write concern.
-
Constructor Details
-
DropDatabaseOperation
Deprecated.Construct a new instance.- Parameters:
databaseName
- the name of the database for the operation.
-
DropDatabaseOperation
Deprecated.Construct a new instance.- Parameters:
databaseName
- the name of the database for the operation.writeConcern
- the write concern- Since:
- 3.4
-
-
Method Details
-
getWriteConcern
Deprecated.Gets the write concern.- Returns:
- the write concern, which may be null
- Since:
- 3.4
-
execute
Deprecated.Description copied from interface:WriteOperation
General execute which can return anything of type T- Specified by:
execute
in interfaceWriteOperation<Void>
- Parameters:
binding
- the binding to execute in the context of- Returns:
- T, the result of the execution
-
executeAsync
Deprecated.Description copied from interface:AsyncWriteOperation
General execute which can return anything of type T- Specified by:
executeAsync
in interfaceAsyncWriteOperation<Void>
- Parameters:
binding
- the binding to execute in the context ofcallback
- the callback to be called when the operation has been executed
-