In this example:
                from("queue:a")
                .intercept()
                        .add(interceptor1)
                        .add(interceptor2)
                        .target()
                                .to("queue:b");
the interceptors process a passing message in the order:
interceptor2.process(), interceptor1.process()
Is that the intended behavior?
-- 
View this message in context: 
http://www.nabble.com/-camel--InterceptorProcessor-tf3604072s2354.html#a10069237
Sent from the ActiveMQ - Dev mailing list archive at Nabble.com.

Reply via email to