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

Popular posts from this blog

formatting - SAS SQL Datepart function returning odd values -

c++ - Apple Mach-O Linker Error(Duplicate Symbols For Architecture armv7) -

php - Yii 2: Unable to find a class into the extension 'yii2-admin' -