1
任何一個可以給我一個提示,如果有可能使用阿帕奇駱駝竊聽使用
.wireTap()
像
.bean(Test.class, "testMethod(Exchange)");
我想創建route
將通過發送馬上處理請求processing…
消息並且同時呼叫testMethod
以便處理訂單
測試案例:
from("timer:test")
//.to("log:test")
.bean(Test.class, "testMethod2()")
.bean(Test.class, "testMethod(Exchange)");
表明testMethod
正在等待testMethod2
結束。我想運行這兩個方法異步