31 lines
958 B
C#
31 lines
958 B
C#
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(); |