Contour.Transport.RabbitMQ.Internal.RabbitChannel.Declare C# (CSharp) Method

Declare() public method

The declare.
public Declare ( Contour.Transport.RabbitMQ.Topology.Exchange exchange ) : void
exchange Contour.Transport.RabbitMQ.Topology.Exchange /// The exchange. ///
return void
        public void Declare(Exchange exchange)
        {
            this.SafeNativeInvoke(n => n.ExchangeDeclare(exchange.Name, exchange.Type, exchange.Durable, exchange.AutoDelete, new Dictionary<string, object>()));
        }

Same methods

RabbitChannel::Declare ( Queue queue ) : void