https://github.com/cenkozturrk/rabbitmqsample
This project demonstrates the basics of RabbitMQ by implementing a producer and consumer to showcase message queuing and asynchronous communication.
https://github.com/cenkozturrk/rabbitmqsample
csharp rabbitmq
Last synced: 12 months ago
JSON representation
This project demonstrates the basics of RabbitMQ by implementing a producer and consumer to showcase message queuing and asynchronous communication.
- Host: GitHub
- URL: https://github.com/cenkozturrk/rabbitmqsample
- Owner: cenkozturrk
- Created: 2022-08-28T12:08:50.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2025-01-29T22:58:58.000Z (over 1 year ago)
- Last Synced: 2025-03-11T20:57:01.908Z (over 1 year ago)
- Topics: csharp, rabbitmq
- Language: C#
- Homepage:
- Size: 44.9 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# RabbitMQ Example Project
This repository demonstrates the use of **RabbitMQ** for message queuing and communication between producer and consumer applications. RabbitMQ is a powerful message broker that enables asynchronous communication, ensuring scalability and reliability in distributed systems.
## Features
- A small example of how the Rabbitmq library and system works.
- There are RabbitMQ.Client and newtonsoft.json libraries.
- The application was created on a single project. If you want to use the application, run the producer library and open the bin file of the application and run the consumer exe.
- This way you can track both queues and exchanges tabs on cloudampq.
- All exchange types implemented. => As Exchange types
+Fanout
+Topic
+Direct
+header
Queues Output

Excanges Output

- If you don't have RabbitMQ installed, you can use Docker to quickly set it up:
```bash
docker run -d --hostname rabbitmq-host --name rabbitmq -p 5672:5672 -p 15672:15672 rabbitmq:management