Akka.Interfaced.AkkaReceiverNotificationChannel.Equals C# (CSharp) Method

Equals() public method

public Equals ( object obj ) : bool
obj object
return bool
        public override bool Equals(object obj)
        {
            var c = obj as AkkaReceiverNotificationChannel;
            if (c == null)
                return false;

            return Receiver.Equals(c.Receiver);
        }