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?
        }