首页 > 代码库 > RabbitMQ学习之:(八)Topic Exchange (转贴+我的评论)
RabbitMQ学习之:(八)Topic Exchange (转贴+我的评论)
From: http://lostechies.com/derekgreer/2012/05/18/rabbitmq-for-windows-topic-exchanges/
RabbitMQ for Windows: Topic Exchanges
This is the seventh installment to the series: RabbitMQ for Windows. In the last installment, we walked through creating a fanout exchange example. In this installment, we’ll be walking through a topic exchange example.
Topic exchanges are similar to direct exchanges in that they use a routing key to determine which queue a message should be delivered to, but they differ in that they provide the ability to match on portions of a routing key. When publishing to a topic exchange, a routing key consisting of multiple words separated by periods (e.g. “word1.word2.word3”) will be matched against a pattern supplied by the binding queue. Patterns may contain an asterisk (“*”) to matcha word[PunCha: 只有1个单词!这个和文件通配符是不一样的。] in a specific segment or a hash (“#”) to matchzero or more words. As discussed earlier in the series, the topic exchange type can be useful for directing messages based on multiple categories or for routing messages originating from multiple sources.
To demonstrate topic exchanges, we’ll return to our logging example, but this time we’ll subscribe to a subset of the messages being published to demonstrate the flexibility of how routing keys are used by topic exchanges. For this example, we’ll be modeling a scenario where a company may have multiple client installations, each of which may be used to service different sectors of a company’s business model (e.g. Business or Personal sectors). We’ll use a routing key that specifies the sector and subscribe to messages published for the Personal sector only.
As with our previous examples, we’ll keep things simple by creating console applications for a Producer and a Consumer. Let’s start by creating the Producer app and establishing a connection using the default settings:
using RabbitMQ.Client;namespace Producer{ class Program { const long ClientId = 10843; static void Main(string[] args) { var connectionFactory = new ConnectionFactory(); IConnection connection = connectionFactory.CreateConnection(); } }}
Rather than just publishing messages directly from the Main() method as with our first logging example, let’s create a separate logger object this time. Here the logger interface and implementation we’ll be using:
interface ILogger { void Write(Sector sector, string entry, TraceEventType traceEventType); } class RabbitLogger : ILogger, IDisposable { readonly long _clientId; readonly IModel _channel; bool _disposed; public RabbitLogger(IConnection connection, long clientId) {
// 每创建一个Logger,就创建一个Channel。 _clientId = clientId; _channel = connection.CreateModel(); _channel.ExchangeDeclare("direct-exchange-example", ExchangeType.Topic, false, true, null); } public void Dispose() { if (!_disposed) { if (_channel != null && _channel.IsOpen) {
// 销毁这个Channel。
_channel.Close();
}
}
// 标准的Disposable的实现
GC.SuppressFinalize(this);
}
public void Write(Sector sector, string entry, TraceEventType traceEventType)
{
byte[] message = Encoding.UTF8.GetBytes(entry);
// RoutingKey: ClientID.Sector.EventType
string routingKey = string.Format("{0}.{1}.{2}", _clientId, sector.ToString(), traceEventType.ToString());
_channel.BasicPublish("topic-exchange-example", routingKey, null, message);
}
~RabbitLogger()
{
Dispose();
}
}
In addition to an open IConnection, our RabbitLogger class is instantiated with a client Id. We use this as part of the routing key. Since each log can vary by sector, we pass a Sector enum as part of the Write() method. Here’s our Sector enum:
public enum Sector { Personal, Business }
Returning to our Main() method, we now need to instantiate our RabbitLogger and log messages with differing sectors. As as way to ensure our client has an opportunity to subscribe to our messages and to help emulate a continual stream of log messages being published, let’s use the logger to publish a series of log messages every second for 10 seconds:
TimeSpan time = TimeSpan.FromSeconds(10); var stopwatch = new Stopwatch(); Console.WriteLine("Running for {0} seconds", time.ToString("ss")); stopwatch.Start(); while (stopwatch.Elapsed < time) {
// 每个Loop都创建一个新的Channel,传入相同的ClientId
using (var logger = new RabbitLogger(connection, ClientId))
{
Console.Write("Time to complete: {0} seconds\r", (time - stopwatch.Elapsed).ToString("ss"));
// RK: 10843.Personal.Information
logger.Write(Sector.Personal, "This is an information message", TraceEventType.Information);
// RK: 10843.Business.Information
logger.Write(Sector.Business, "This is an warning message", TraceEventType.Warning);
// RK: 10843.Business.Information
logger.Write(Sector.Business, "This is an error message", TraceEventType.Error);
Thread.Sleep(1000);
}
}
This code prints out the time remaining just to give us a little feedback on the publishing progress. Finally, we’ll close our our connection and prompt the user to exit the console application:
connection.Close(); Console.Write(" \r"); Console.WriteLine("Press any key to exit"); Console.ReadKey();
Here’s the full Producer listing:
using System;using System.Diagnostics;using System.Text;using System.Threading;using RabbitMQ.Client;namespace Producer{ public enum Sector { Personal, Business } interface ILogger { void Write(Sector sector, string entry, TraceEventType traceEventType); } class RabbitLogger : ILogger, IDisposable { readonly long _clientId; readonly IModel _channel; bool _disposed; public RabbitLogger(IConnection connection, long clientId) { _clientId = clientId; _channel = connection.CreateModel(); _channel.ExchangeDeclare("direct-exchange-example", ExchangeType.Topic, false, true, null); } public void Dispose() { if (!_disposed) { if (_channel != null && _channel.IsOpen) { _channel.Close(); } } GC.SuppressFinalize(this); } public void Write(Sector sector, string entry, TraceEventType traceEventType) { byte[] message = Encoding.UTF8.GetBytes(entry); string routingKey = string.Format("{0}.{1}.{2}", _clientId