MessageForwarder
Forward messages from one queue to another.
Public Attributes
caseString
Name of queue to forward to.
Detailed Description
Forward messages from one queue to another.
MessageForwarder is a script class that can be used to forward messages from one queue to another.
%fwd = new MessageForwarder() { toQueue = "QueueToSendTo"; }; registerMessageListener("FromQueue", %fwd);
Where "QueueToSendTo" is the queue you want to forward to, and "FromQueue" is the queue you want to forward from.