Hi, I have a camel route like below:-
from("jetty:http://localhost:8888/orchestratorservice").process(processor); from("direct:setStatusToReadyToShip").to( "bean:orderHelper?method=setStatusToReadyToShip") I have gone through the throttle <http://camel.apache.org/throttler.html> pattern. But is there a way I get rate limit / throttle based on a query param(e.g if debug=1 is set in request then we want to throttle requests to 10 req/sec).