/// <summary> /// Handles the identity. /// </summary> /// <param name="m">The m.</param> private void HandleIdentity(Identify m) { Sender.Tell(new ActorIdentity(m.MessageId, Self)); }
private bool Equals(Identify other) { return(Equals(MessageId, other.MessageId)); }