Click or drag to resize
Akka.NETIUpdateResponse Interface
A response message for the Update request. It can be one of the 3 possible types:
  • UpdateSuccess when update has finished successfully with given write consistency withing provided time limit.
  • ModifyFailure if a Modify delegate has thrown a failure.
  • UpdateTimeout if a request couldn't complete withing given timeout and write consistency constraints.

Namespace:  Akka.DistributedData
Assembly:  Akka.DistributedData (in Akka.DistributedData.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public interface IUpdateResponse : INoSerializationVerificationNeeded

The IUpdateResponse type exposes the following members.

Properties
  NameDescription
Public propertyIsSuccessful
Returns true if Update request has completed successfully.
Public propertyKey
Key, under with updated data is going to be stored.
Public propertyRequest
Optional object that can be used to correlate this response with particular Update request.
Top
Methods
  NameDescription
Public methodThrowOnFailure
Throws an exception if Update request has failed.
Top
See Also