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

时间:2017-10-04 09:10:35

标签: java apache-camel

我正在查看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")

1 个答案:

答案 0 :(得分:1)

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

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