Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
rabbitmq-tutorials/dotnet/ReceiveLogs/ReceiveLogs.cs
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
31 lines (25 sloc)
959 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Text; | |
using RabbitMQ.Client; | |
using RabbitMQ.Client.Events; | |
var factory = new ConnectionFactory { HostName = "localhost" }; | |
using var connection = factory.CreateConnection(); | |
using var channel = connection.CreateModel(); | |
channel.ExchangeDeclare(exchange: "logs", type: ExchangeType.Fanout); | |
// declare a server-named queue | |
var queueName = channel.QueueDeclare().QueueName; | |
channel.QueueBind(queue: queueName, | |
exchange: "logs", | |
routingKey: string.Empty); | |
Console.WriteLine(" [*] Waiting for logs."); | |
var consumer = new EventingBasicConsumer(channel); | |
consumer.Received += (model, ea) => | |
{ | |
byte[] body = ea.Body.ToArray(); | |
var message = Encoding.UTF8.GetString(body); | |
Console.WriteLine($" [x] {message}"); | |
}; | |
channel.BasicConsume(queue: queueName, | |
autoAck: true, | |
consumer: consumer); | |
Console.WriteLine(" Press [enter] to exit."); | |
Console.ReadLine(); |