Skip to content

RabbitMQ

RabbitMQ is an open-source message broker software that enables efficient communication between different systems, applications, and services. It supports multiple messaging protocols and facilitates a reliable and flexible messaging system.

Type: rabbitMQ/v1


Connections

Version: 1

null


Actions

Send Message

Name: sendMessage

Send a new RabbitMQ message.

Properties

NameLabelTypeControl TypeDescriptionRequired
queuenullSTRINGTEXTThe name of the queue to read fromtrue
messagenullOBJECT
Properties {}
OBJECT_BUILDERThe name of the queue to read fromtrue

JSON Example

{
"label" : "Send Message",
"name" : "sendMessage",
"parameters" : {
"queue" : "",
"message" : { }
},
"type" : "rabbitMQ/v1/sendMessage"
}

Triggers

New Message

Name: newMessage

Triggers on new RabbitMQ messages.

Type: LISTENER

Properties

NameLabelTypeControl TypeDescriptionRequired
queuenullSTRINGTEXTThe name of the queue to read fromtrue

JSON Example

{
"label" : "New Message",
"name" : "newMessage",
"parameters" : {
"queue" : ""
},
"type" : "rabbitMQ/v1/newMessage"
}