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