本文整理汇总了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);
}
示例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);
}
}