我正在查看Apache Camel中的Throttler,在http://camel.apache.org/throttler.html上閱讀它說rejectExecution的值默認設置爲false。如何在Camel中將rejectExecution值更改爲True
我的問題是如何將此值更改爲true?
例如在下面的路線中,我會在哪裏更改默認值?
from("direct:start")
.throttle(5).timePeriodMillis(2000)
.to("mock:throttled")
.end()
.to("mock:after")
你應該自己嘗試了一下,因爲它很容易 –