gpt4 book ai didi

apache-camel - Camel 发送到多个端点

转载 作者:行者123 更新时间:2023-12-03 15:19:16 29 4
gpt4 key购买 nike

这两个有何不同

from(endpoint).to(endpoint:a, endpoint:b)

from(endpoint).multicast().to(endpoint:a, endpoint:b)


第一个找不到任何文档

最佳答案

to(endpoint:a, endpoint:b)等效于.to(endpoint:a).to(endpoint:b),这意味着endpoint:a的输出发送到endpoint:b,而不是原始的Exchange。同样,每个端点都一个接一个地执行。

.multicast()将原始Exchange发送到每个已定义的端点,允许进行并行处理,并允许您定义AggregationStrategy以确定如何组合来自原始Exchange所发送到的每个端点的响应。

关于apache-camel - Camel 发送到多个端点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10280679/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com