Akka.Remote.EndpointManager.Flushing C# (CSharp) 메소드

Flushing() 보호된 메소드

protected Flushing ( ) : void
리턴 void
        protected void Flushing()
        {
            Receive<Send>(send => Context.System.DeadLetters.Tell(send));
            Receive<InboundAssociation>(
                     ia => ia.Association.AsInstanceOf<AkkaProtocolHandle>().Disassociate(DisassociateInfo.Shutdown));
            Receive<Terminated>(terminated => { }); // why should we care now?
        }