RabbitMQ Producer
The RabbitMQ Producer is sending message records to a Queue destination to a RabbitMQ messaging server.
- Module:
rabbitmq/producer
- Alias:
rabbitmq/producer
- Definition: https://github.com/eclipse/dirigible/issues/722
- Source: /rabbitmq/producer.js
- Status:
beta
- Group:
ext
Basic Usage
Send record to a given topic
import { producer } from "sdk/rabbitmq";
producer.send("rabbitmq-queue", "My RabbitMQ message");
Functions
Function | Description | Returns |
---|---|---|
send(queue, value) | Send a message record by a queue and value to a RabbitMQ Queue | - |