Re: Linking multiple routes

2014-07-14 Thread srinivas_vsk
I understand i could use direct but if i have routes defined in multiple classes like Route1 extends Routebuilder Route2 extends RouteBuilder i wanted something like ConfigureAllroutes extends RouteBuilder { which can do something like from(route1).to(route2) e.t.c. } directly refer the rou

Re: Linking multiple routes

2014-07-14 Thread catalyst156
How do you want the messages to be routed? Do you want to send the same message to each endpoint, process them sequentially, or something altogether different? If you just want to send the same message to multiple routes, try multicasting (http://camel.apache.org/multicast.html). If you're looki

Re: Linking multiple routes

2014-07-14 Thread Jeff Bischoff
Use the "direct" endpoint. On 7/14/14 1:02 PM, "srinivas_vsk" wrote: > >I was looking to link multiple routes together for a complex scenario, >something like > >from(route1).to(route2).to(route3).to(routend) > >Any ideas? > >Thanks > > > > >-- >View this message in context: >http://camel.4654