本文整理汇总了C#中IModel.DeclareExchangeForConnection方法的典型用法代码示例。如果您正苦于以下问题:C# IModel.DeclareExchangeForConnection方法的具体用法?C# IModel.DeclareExchangeForConnection怎么用?C# IModel.DeclareExchangeForConnection使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IModel
的用法示例。
在下文中一共展示了IModel.DeclareExchangeForConnection方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: TestRMQListener
public TestRMQListener(RmqMessagingGatewayConnection connection, string channelName)
{
_channelName = channelName;
_connectionFactory = new ConnectionFactory {Uri = connection.AmpqUri.Uri.ToString()};
_connection = _connectionFactory.CreateConnection();
_channel = _connection.CreateModel();
_channel.DeclareExchangeForConnection(connection);
_channel.QueueDeclare(_channelName, false, false, false, null);
_channel.QueueBind(_channelName, connection.Exchange.Name, _channelName);
}
示例2: ConnectToBroker
protected virtual void ConnectToBroker()
{
if (Channel == null || Channel.IsClosed)
{
var connection = new MessageGatewayConnectionPool().GetConnection(_connectionFactory);
_logger.Value.DebugFormat("RMQMessagingGateway: Opening channel to Rabbit MQ on connection {0}", Connection.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;
}
_logger.Value.DebugFormat("RMQMessagingGateway: Declaring exchange {0} on connection {1}", Connection.Exchange.Name, Connection.AmpqUri.GetSanitizedUri());
//desired state configuration of the exchange
Channel.DeclareExchangeForConnection(Connection);
}
}