Skip to content

RabbitMQ Producer

The RabbitMQ Producer is sending message records to a Queue destination to a RabbitMQ messaging server.

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 -