Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/oleksiygarnik/rabbitmq-playground

A repository for testing RabbitMQ with a producer and consumer.
https://github.com/oleksiygarnik/rabbitmq-playground

amqp consumer dotnet producer rabbitmq

Last synced: about 2 months ago
JSON representation

A repository for testing RabbitMQ with a producer and consumer.

Awesome Lists containing this project

README

        

Result:
1. Pinger console application listens to ping_queue, writes to pong_queue.
2. Ponger console application listens to pong_queue, writes to ping_queue

![picture](images/PingerPonger.png)

At the picture below you can see queues: ping_queue and pong_queue;

![picture](images/queues.png)

Also, during connection to rabbitmq you have some retry attempt if the connection is not established:

![picture](images/polly.png)

You can start rabbitmq server by docker and next command:

docker run -d --hostname my-rabbit --name Rabbit -p 15672:15672 -p 5672:5672 rabbitmq:3-management