Oh i see what you mean! thank you Claus.
On Fri, Jul 3, 2020 at 3:32 PM Claus Ibsen wrote:
> On Fri, Jul 3, 2020 at 9:13 PM Reji Mathews wrote:
> >
> > Thanks for that quick response. What if I need to have more processing
> > after the multi-cast eip? Suppose I want to use the aggregated outpu
On Fri, Jul 3, 2020 at 9:13 PM Reji Mathews wrote:
>
> Thanks for that quick response. What if I need to have more processing
> after the multi-cast eip? Suppose I want to use the aggregated output and
> perform some massaging and push it into another remote service endpoint?
>
Yeah thats the poi
Thanks for that quick response. What if I need to have more processing
after the multi-cast eip? Suppose I want to use the aggregated output and
perform some massaging and push it into another remote service endpoint?
Is that possible?
On Fri, Jul 3, 2020 at 2:56 PM Claus Ibsen wrote:
> Hi
>
>
Hi
You need to end the multicat assuming you only want to call a and b
.multicast(stringConcatStrategy).parallelProcessing(true).to("direct:a","direct:b")
should be
.multicast(stringConcatStrategy).parallelProcessing(true)
.to("direct:a","direct:b")
.end()
On Fri, Jul 3, 2020 at
Am just trying to understand the nature of multicast EIP and its further
processing down.
I have a route as follows
@Override
public void configure() throws Exception {
from("jetty:http://0.0.0.0:8081/testagg?httpMethodRestrict=GET";)
.convertBodyTo(String.class)
.mul