gpt4 book ai didi

java - Apache Camel 从当前路由开始新的异步路由

转载 作者:行者123 更新时间:2023-12-01 17:52:30 25 4
gpt4 key购买 nike

我正在尝试做这样的事情

from("direct:start")
.to("direct:a")
// I want this route to stop here (reply with the response from "direct a"
// then starts "direct:async" in new thread because it will take time
// (more that route timeout
.to("direct:async");

最佳答案

您可以使用窃听。您从 direct:start 开始路由,然后使用 wireTap 异步发送交换副本(启动一个新线程),您的路由将继续使用 direct :a

from("direct:start").wireTap("direct:async").to("direct:a")

关于java - Apache Camel 从当前路由开始新的异步路由,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48462034/

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