Contour.Transport.RabbitMQ.Internal.RabbitBus.BuildSenders C# (CSharp) Method

BuildSenders() private method

private BuildSenders ( ) : void
return void
        private void BuildSenders()
        {
            this.ProducerRegistry = new ProducerRegistry(this);

            this.Configuration.SenderConfigurations.ForEach(
                c =>
                    {
                        var sender = new RabbitSender(this.Configuration.Endpoint, c, this.ProducerRegistry, this.Configuration.Filters.ToList());
                        this.ComponentTracker.Register(sender);
                    });
        }