Interface IDeleteResponse
A response for a possible Delete request message. It can be one of 3 possible cases:
- DeleteSuccessReturned when data was deleted successfully.
- ReplicationDeleteFailureReturned when delete operation ended with failure.
- DataDeletedReturned when an operation attempted to delete already deleted data.
Namespace: Akka.DistributedData
Assembly: Akka.DistributedData.dll
Syntax
public interface IDeleteResponse : INoSerializationVerificationNeeded
Properties
| Improve this Doc View SourceAlreadyDeleted
Returns true if value for provided Key was already deleted.
Declaration
bool AlreadyDeleted { get; }
Property Value
Type | Description |
---|---|
Boolean |
IsSuccessful
Returns true if value for provided Key was either successfully deleted, or was deleted already.
Declaration
bool IsSuccessful { get; }
Property Value
Type | Description |
---|---|
Boolean |
Key
Key, for which data was deleted.
Declaration
IKey Key { get; }
Property Value
Type | Description |
---|---|
IKey |