Queue Destination

You can use the Queue flavor of Message Destination to create copies of messages from an Outbox or Passthrough queue in one or more other queues.

The Config for this type of destination must contain a JSON with a single root element called "queues". Copies of the original message will be enqueued to the queue(s) listed.


In the example below, one copy of the original message will be placed in queue "outbox/Test1" defined in enterprise "ProgressiveRetailer", and a second copy of the original message will be placed in the value chain queue "outbox/Test2".

{
"queues": [
{"vcId":100, "entName":"ProgressiveRetailer", "name":"outbox/Test1"},
{"vcId":100, "name":"outbox/Test2"}
]
}