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

Notify() public method

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