Package com.mongodb.client.result
Class DeleteResult
java.lang.Object
com.mongodb.client.result.DeleteResult
Deprecated.
Usage of this API is not supported in AEM as a Cloud Service.
The result of a delete operation. If the delete was unacknowledged, then
wasAcknowledged will return false and all other methods
will throw UnsupportedOperationException.- Since:
- 3.0
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic DeleteResultacknowledged(long deletedCount) Deprecated.Create an acknowledged DeleteResultabstract longDeprecated.Gets the number of documents deleted.static DeleteResultDeprecated.Create an unacknowledged DeleteResultabstract booleanDeprecated.Returns true if the write was acknowledged.
-
Constructor Details
-
DeleteResult
public DeleteResult()Deprecated.
-
-
Method Details
-
wasAcknowledged
public abstract boolean wasAcknowledged()Deprecated.Returns true if the write was acknowledged.- Returns:
- true if the write was acknowledged
-
getDeletedCount
public abstract long getDeletedCount()Deprecated.Gets the number of documents deleted.- Returns:
- the number of documents deleted
-
acknowledged
Deprecated.Create an acknowledged DeleteResult- Parameters:
deletedCount- the number of documents deleted- Returns:
- an acknowledged DeleteResult
-
unacknowledged
Deprecated.Create an unacknowledged DeleteResult- Returns:
- an unacknowledged DeleteResult
-