Class Get
Send this message to the local Akka.DistributedData.Replicator to retrieve a data value for the
given key
. The Replicator
will reply with one of the IGetResponse messages.
The optional request
context is included in the reply messages. This is a convenient
way to pass contextual information (e.g. original sender) without having to use ask
or maintain local correlation data structures.
Assembly: Akka.DistributedData.dll
Syntax
[Serializable]
public sealed class Get : IEquatable<Get>, IReplicatorMessage
Constructors
|
Improve this Doc
View Source
Get(IKey, IReadConsistency, Object)
Declaration
public Get(IKey key, IReadConsistency consistency, object request = null)
Parameters
Properties
|
Improve this Doc
View Source
Consistency
Declaration
public IReadConsistency Consistency { get; }
Property Value
|
Improve this Doc
View Source
Key
Declaration
Property Value
|
Improve this Doc
View Source
Request
Declaration
public object Request { get; }
Property Value
Methods
|
Improve this Doc
View Source
Equals(Get)
Declaration
public bool Equals(Get other)
Parameters
Type |
Name |
Description |
Get |
other |
|
Returns
|
Improve this Doc
View Source
Equals(Object)
Declaration
public override bool Equals(object obj)
Parameters
Type |
Name |
Description |
Object |
obj |
|
Returns
Overrides
|
Improve this Doc
View Source
GetHashCode()
Declaration
public override int GetHashCode()
Returns
Overrides
|
Improve this Doc
View Source
ToString()
Declaration
public override string ToString()
Returns
Overrides
Implements
Extension Methods