Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
通过 RouteBuilder 在 Camel 上下文中使用路由时,以下之间的实际区别是什么:
1) 从(A).to(B).to(C);
2)从(A)到(B);从(B)到(C)
1)使用来自A的单个消费者然后发送到B并将调用B的结果(如果B返回一些输出)发送到C。所以它是一个管道。
2) 使用 B 上的消费者发送到 C,并且不会将 B 的输出发送到 C