gpt4 book ai didi

java - 如何在Camel中将rejectExecution值更改为True

转载 作者:行者123 更新时间:2023-12-02 12:10:50 25 4
gpt4 key购买 nike

我正在研究 Apache Camel 中的 Throttler,阅读 http://camel.apache.org/throttler.html它表示拒绝执行值默认设置为 false。

我的问题是如何将此值更改为 true?

例如在下面的路由中,我应该在哪里更改默认值?

from("direct:start")
.throttle(5).timePeriodMillis(2000)
.to("mock:throttled")
.end()
.to("mock:after")

最佳答案

只需使用 Java 编辑器,然后按 Control + 空格键即可获取可能的方法列表,然后您就可以找到它

from("direct:start")
.throttle(5).timePeriodMillis(2000).rejectExecution(true)
.to("mock:throttled")
.end()
.to("mock:after")

关于java - 如何在Camel中将rejectExecution值更改为True,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46561102/

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