appmixer.rabbitmq.platform.SendToQueue
1.0.0
Public
| Field | Type | Description |
|---|---|---|
| Queue | text | Enter a queue name. |
| Message | textarea | Enter a message. |
| Expiration | text | If supplied, the message will be discarded from a queue once it’s been there longer than the given number of milliseconds. In the specification this is a string; numbers supplied here will be coerced to strings for transit. |
| User ID | text | If supplied, RabbitMQ will compare it to the username supplied when opening the connection, and reject messages for which it does not match. |
| CC | text | A comma separated list of routing keys; messages will be routed to these routing keys in addition to that given as the routingKey parameter. This will override any value given for CC in the headers parameter. Note that the value is case-sensitive. |
| Priority | number | A priority for the message; ignored by versions of RabbitMQ older than 3.5.0, or if the queue is not a priority queue. |
| Content Type | text | A MIME type for the message content. |
| Content Encoding | text | A MIME encoding for the message content. |
| Headers | textarea | Message headers as a JSON string. Example: { "myheader": "myvalue" }. |
| Persistent | toggle | If set, the message will survive broker restarts provided it’s in a queue that also survives restarts. |
| Mandatory | toggle | If set, the message will be returned if it cannot be routed to any queue. |
| BCC | text | A comma separated list of routing keys; messages will be routed to these routing keys in addition to that given as the routingKey parameter. This will override any value given for BCC in the headers parameter. Note that the value is case-sensitive. It's like CC, except that the value will not be sent in the message headers to consumers. |
| Reply To | text | Often used to name a queue to which the receiving application must send replies, in an RPC scenario (many libraries assume this pattern). |
| Timestamp | number | A timestamp for the message. |
| Type | text | An arbitrary application-specific type for the message. |
| App ID | text | An arbitrary identifier for the originating application. |
| Correlation ID | text | Often used to match requests with responses. |
| Message ID | text | Arbitrary application-specific identifier for the message. |
| Field | Type | Description |
|---|---|---|
| Queue | - | |
| Message | - |