public IRabbitMqReceiveEndpointConfiguration CreateReceiveEndpointConfiguration(string queueName)
        {
            var settings = new RabbitMqReceiveSettings(queueName, _busConfiguration.Topology.Consume.ExchangeTypeSelector.DefaultExchangeType, true, false);

            return(new RabbitMqReceiveEndpointConfiguration(this, settings, _busConfiguration.CreateEndpointConfiguration()));
        }
 public IRabbitMqReceiveEndpointConfiguration CreateReceiveEndpointConfiguration(string queueName)
 {
     return(new RabbitMqReceiveEndpointConfiguration(this, queueName, _busConfiguration.CreateEndpointConfiguration()));
 }