mule - Scatter Gather for One Way -
mule - Scatter Gather for One Way -
mule 3.5 has replaced router scatter gather. have need send payload more 1 message routes . 1 way , no need aggregate response. how possible? documentation seem request/response , aggregating data.
you can add together each one-way outbound endpoint in turn flow, so:
<flow name="myflow"> <set-payload value="important message" /> <vm:outbound-endpoint path="vm.inbox" /> <jms:outbound-endpoint queue="jms.inbox" /> <jms:outbound-endpoint queue="jms.inbox2" /> </flow>
in flow, payload "important message" sent 1 vm queue , 2 jms queues, in parallel. endpoints one-way because vm , jms transport one-way default.
mule
Comments
Post a Comment