I have a Camel Route Definition written in Java DSL like this:
from(myEndpoint)
.throttle(200)
.to(myOtherEndpoint);
This connects my two endpoints using a Throttler which limits the message flow to 200 messages per second.
I'm looking for a way to change the maximumRequestCount / second during runtime. So I need to somehow get to the Throttler instance which is called and change the property.
How can I access the Throttler?