Hi,
If we want a pass through of all the messages from the different branches,
is it right to use the GroupedExchangeAggregationStrategy as the
aggrgationstrategy for the multicast and use a splitter , thereafter?
If so, should a custom bean be used as the splitter (or) is it possible for
the camel splitter to automatically split the GROUPED_EXCHANGE and pass the
individual exchanges?
Pls. help.
<bean id="groupStrategy"
class="org.apache.camel.processor.aggregate.GroupedExchangeAggregationStrategy"/>
<route>
<from uri="..."/>
<multicast strategyRef="groupStrategy" >
<to uri="direct://X" />
<to uri="direct://Y" />
</multicast >
<split>
<to uri="direct://Z" />
</split>
</route>
<route>
<from uri=="direct://X" />
.....
</route>
<route>
<from uri=="direct://Y" />
.....
</route>
Thanks,
Lakshmi
--
View this message in context:
http://camel.465427.n5.nabble.com/Multicast-Pass-through-all-messages-aggregate-from-different-branches-tp5751739p5751861.html
Sent from the Camel - Users mailing list archive at Nabble.com.