40 lines
1.2 KiB
C#
40 lines
1.2 KiB
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.QueueDeclare(queue: "task_queue",
|
|
durable: true,
|
|
exclusive: false,
|
|
autoDelete: false,
|
|
arguments: null);
|
|
|
|
channel.BasicQos(prefetchSize: 0, prefetchCount: 1, global: false);
|
|
|
|
Console.WriteLine(" [*] Waiting for messages.");
|
|
|
|
var consumer = new EventingBasicConsumer(channel);
|
|
consumer.Received += (model, ea) =>
|
|
{
|
|
byte[] body = ea.Body.ToArray();
|
|
var message = Encoding.UTF8.GetString(body);
|
|
Console.WriteLine($" [x] Received {message}");
|
|
|
|
int dots = message.Split('.').Length - 1;
|
|
Thread.Sleep(dots * 1000);
|
|
|
|
Console.WriteLine(" [x] Done");
|
|
|
|
// here channel could also be accessed as ((EventingBasicConsumer)sender).Model
|
|
channel.BasicAck(deliveryTag: ea.DeliveryTag, multiple: false);
|
|
};
|
|
channel.BasicConsume(queue: "task_queue",
|
|
autoAck: false,
|
|
consumer: consumer);
|
|
|
|
Console.WriteLine(" Press [enter] to exit.");
|
|
Console.ReadLine();
|