当前位置: 首页>>代码示例>>C#>>正文


C# IModel.DeclareExchangeForConfiguration方法代码示例

本文整理汇总了C#中IModel.DeclareExchangeForConfiguration方法的典型用法代码示例。如果您正苦于以下问题:C# IModel.DeclareExchangeForConfiguration方法的具体用法?C# IModel.DeclareExchangeForConfiguration怎么用?C# IModel.DeclareExchangeForConfiguration使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在IModel的用法示例。


在下文中一共展示了IModel.DeclareExchangeForConfiguration方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: TestRMQListener

 private TestRMQListener(string channelName, RMQMessagingGatewayConfigurationSection configuration)
 {
     _channelName = channelName;
     rMQMessagingGatewayConfigurationSection = configuration;
     _connectionFactory = new ConnectionFactory {Uri = configuration.AMPQUri.Uri.ToString()};
     _connection = _connectionFactory.CreateConnection();
     _channel = _connection.CreateModel();
     _channel.DeclareExchangeForConfiguration(configuration);
     _channel.QueueDeclare(_channelName, false, false, false, null);
     _channel.QueueBind(_channelName, configuration.Exchange.Name, _channelName);
 }
开发者ID:yonglehou,项目名称:Paramore,代码行数:11,代码来源:TestHelpers.cs

示例2: ConnectToBroker

        protected virtual void ConnectToBroker()
        {
            if (Channel == null || Channel.IsClosed)
            {
                var connection = new MessageGatewayConnectionPool().GetConnection(_connectionFactory);

                Logger.DebugFormat("RMQMessagingGateway: Opening channel to Rabbit MQ on connection {0}", Configuration.AMPQUri.GetSanitizedUri());

                Channel = connection.CreateModel();

                //When AutoClose is true, the last channel to close will also cause the connection to close1. If it is set to
                //true before any channel is created, the connection will close then and there.
                if (connection.AutoClose == false)
                {
                    connection.AutoClose = true;
                }

                // Configure the Quality of service for the model.
                // BasicQos(0="Don't send me a new message until I?ve finished",  1= "Send me one message at a time", false ="Applied separately to each new consumer on the channel")
                Channel.BasicQos(0, Configuration.Queues.QosPrefetchSize, false);

                Logger.DebugFormat("RMQMessagingGateway: Declaring exchange {0} on connection {1}", Configuration.Exchange.Name, Configuration.AMPQUri.GetSanitizedUri());

                //desired state configuration of the exchange
                Channel.DeclareExchangeForConfiguration(Configuration);
            }
        }
开发者ID:stantoxt,项目名称:Paramore,代码行数:27,代码来源:MessageGateway.cs


注:本文中的IModel.DeclareExchangeForConfiguration方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。