RabbitMQ Receiver Connector
RabbitMQ Receiver Connector listens for incoming messages from a specified RabbitMQ queue and processes them.
Service Description
The RabbitMQ Receiver Connector enables applications to consume messages from RabbitMQ queues. This allows services to react to new messages and perform necessary processing.
With this connector, messages can be retrieved from the queue, acknowledged, and processed efficiently. RabbitMQ ensures that messages are delivered reliably and can be configured for different acknowledgment modes.
Required Connector Properties
- Host: The RabbitMQ server hostname or IP address.
- Port: The port used for connecting to the RabbitMQ broker.
- Basic Authentication Name: The name of a predefined credential for authentication.
- Queue Name: The name of the queue from which messages will be received.
- Compress Message: Option to decompress the received message.
- Encrypt Message: Option to decrypt the received message.
- Message: The content of the received message.
Usage
Use the RabbitMQ Receiver Connector to listen for messages in real-time and process them as part of an event-driven architecture. This helps in building scalable and decoupled microservices.