Re: Any issues having Camel Processor doing all the Works

2016-08-12 Thread souciance
Hi, Yes it can be done in the processor but I find the code is easier to read in dsl form. Also, I can easily change the dsl to something else (change endpoint or predicate) much easier than rewrite the code in a processor. There are things you get that you don't in a processor, easier way to comm

Re: Any issues having Camel Processor doing all the Works

2016-08-12 Thread Vitalii Tymchyshyn
Look at it as data flow vs IoC. It's much easier to split data flow to parallelize of externalize some part. Especially since Camel is able to do this in non-blocking way. I am able to process few hundred simultanious requests in few threads without adaptation of the beans to non-blocking or concur