When using routing in a Camel context via RouteBuilder, What is the practical difference between:
1) from(A).to(B).to(C);
2) from(A).to(B); from(B).to(C)
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
1) uses a single consumer from A then sends to B and sends the result of invoking B (if B returns some output) to C. So its a pipeline.
2) uses a consumer on B to send to C and won’t send the output of B to C