Akka.Remote.EndpointManager.HandleStashedInbound C# (CSharp) Method

HandleStashedInbound() private method

private HandleStashedInbound ( IActorRef endpoint, bool writerIsIdle ) : void
endpoint IActorRef
writerIsIdle bool
return 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);
        }