Hello Community I have a camel multicast as follows
from("jetty:http://0.0.0.0:8081/sort?httpMethodRestrict=PUT") .convertBodyTo(String.class) .multicast(new ListAggregator()).parallelProcessing().to("direct:A","seda:B","direct:C").end() .log("API response ${body}") .end(); I want one of those 3 branches to be async and don't want multicast to kinda aggregate the result which comes from seda:B route. Is there a way I can achieve that functionality? In above example, I want the aggregator to hit completion criteria once direct:A and direct:C is done its processing. Cheers Reji Mathews