Akka.Cluster.Tools.Client.ClusterClient.SendBuffered C# (CSharp) Method

SendBuffered() private method

private SendBuffered ( IActorRef receptionist ) : void
receptionist IActorRef
return void
        private void SendBuffered(IActorRef receptionist)
        {
            Log.Debug("Sending buffered messages to receptionist");
            while (_buffer.Count != 0)
            {
                var t = _buffer.Dequeue();
                receptionist.Tell(t.Item1, t.Item2);
            }
        }
    }