Akka.Remote.EndpointManager.HandleStashedInbound C# (CSharp) Метод

HandleStashedInbound() приватный Метод

private HandleStashedInbound ( IActorRef endpoint, bool writerIsIdle ) : void
endpoint IActorRef
writerIsIdle bool
Результат void
        private void HandleStashedInbound(IActorRef endpoint, bool writerIsIdle)
        {
            var stashed = _stashedInbound.GetOrElse(endpoint, new List<InboundAssociation>());
            _stashedInbound.Remove(endpoint);
            foreach (var ia in stashed)
                HandleInboundAssociation(ia, writerIsIdle);
        }