skip to Main Content

Apache – Camel stop context when it is finished

If my understanding is correct, then camel routes do not have a 'complete' state therefore it doesn't make sense to say something like camelContext.addRoute(route1); camelContext.start(); while(0) { ifComplete(route1) break; } camelContext.stop(); and in most examples I've seen it is written…

VIEW QUESTION
Back To Top
Search