Akka.Remote.Transport.ActorAssociationEventListener.Notify C# (CSharp) Method

Notify() public method

Notify the Actor about an IAssociationEvent.
public Notify ( IAssociationEvent ev ) : void
ev IAssociationEvent The message to notify the Actor about
return void
        public void Notify(IAssociationEvent ev)
        {
            Actor.Tell(ev);
        }
    }
ActorAssociationEventListener