我正在查看Apache Camel中的Throttler,阅读http://camel.apache.org/throttler.html它说rejectExecution值默认设置为false。
我的问题是如何将此值更改为true?
例如在下面的路线中,我将在哪里更改默认值?
from("direct:start")
.throttle(5).timePeriodMillis(2000)
.to("mock:throttled")
.end()
.to("mock:after")
答案 0 :(得分:1)
只需使用您的Java编辑器,然后按control + space以获取可能的方法列表,您就可以找到它
from("direct:start")
.throttle(5).timePeriodMillis(2000).rejectExecution(true)
.to("mock:throttled")
.end()
.to("mock:after")