Software-Engineering
Docker Container:
# Sender & Receiver
When working with Message Queues (RabbitMQ) there is a Sender and a Receiver.
Sender
- ”producer”
- sends message into exchange>queue
Receiver
- ”consumer”
- take the message(s) from the queue and consume it
# Create Sender
Exchange, Queues, Messages.
Here we create a Sender, that allows connecting to the queue and sending messages to the queue.
Nun haben wir einen Demo-Exchange mit einer DemoQueue angelegt:
In der Queue befindet sich bereits eine Message:
Nun haben wir den Sender konfiguriert, allerdings fehlt uns noch der Receiver, der die Message ausliest und verarbeitet.
# Create Receiver
Message is consumed: