vote up 1 vote down star

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)

flag

77% accept rate

1 Answer

vote up 1 vote down check

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

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.