Re: [HEADS UP] - More flexible route configuration in all DSLs

2021-08-04 Thread Claus Ibsen
On Tue, Aug 3, 2021 at 7:58 PM Zoran Regvart wrote: > > Hi Claus, > this is really useful. I think a blog post taking bits from the > documentation and showcasing one of the examples would help spread the > word about this. > > (not saying that you need to write the blog post, perhaps someone

Re: [HEADS UP] - More flexible route configuration in all DSLs

2021-08-03 Thread Zoran Regvart
Hi Claus, this is really useful. I think a blog post taking bits from the documentation and showcasing one of the examples would help spread the word about this. (not saying that you need to write the blog post, perhaps someone else could volunteer) zoran On Tue, Aug 3, 2021 at 5:51 PM Claus

Re: [HEADS UP] - More flexible route configuration in all DSLs

2021-08-03 Thread Claus Ibsen
Hi The work has been merged, and the website has been updated https://camel.apache.org/manual/latest/route-configuration.html On Tue, Aug 3, 2021 at 2:49 PM Claus Ibsen wrote: > > Hi > > Back from PTO then I continued this work > https://issues.apache.org/jira/browse/CAMEL-16757 > > I am so

Re: [HEADS UP] - More flexible route configuration in all DSLs

2021-08-03 Thread Claus Ibsen
Hi Back from PTO then I continued this work https://issues.apache.org/jira/browse/CAMEL-16757 I am so far that I am working on a giant PR to be ready for merging. Review is welcome but it's big work so it's not so easy to understand just by browsing a lot of code changes. In the PR there is

Re: [HEADS UP] - More flexible route configuration in all DSLs

2021-07-09 Thread Otavio Rodolfo Piske
Hello Claus, thanks for the clarification! On Fri, Jul 9, 2021 at 9:42 AM Claus Ibsen wrote: > Hi > > The CAMEL-16757 is not really about loading routes (we can do that > already today with the routes loader and resource abstractions). > What it is about is to allow to separate your routes from

Re: [HEADS UP] - More flexible route configuration in all DSLs

2021-07-09 Thread Claus Ibsen
Hi The CAMEL-16757 is not really about loading routes (we can do that already today with the routes loader and resource abstractions). What it is about is to allow to separate your routes from route configurations, and also allow such configurations to be easily reusable. Today you have either

Re: [HEADS UP] - More flexible route configuration in all DSLs

2021-07-08 Thread Otavio Rodolfo Piske
Hello Claus, This looks very interesting! If I understand correctly, with this change, we'll be able to replace the usage of KameletMain in CAMEL-16612 [1] and then we can load all sorts of routes out of the box, without relying on or implementing different kinds of "Main". So, if my