The actors identifier used in the system as actors identity.
Beispiel #1
0
 public static bool Equal(ActorId id1, ActorId id2)
 {
     return id1.Value == id2.Value;
 }
Beispiel #2
0
 public bool Equals(ActorId other)
 {
     return Value == other.Value;
 }
Beispiel #3
0
 public Envelope(ActorId sender)
 {
     Sender = sender;
 }