I'm building a Java application which makes requests to a SOAP API. Certain methods that the API exposes are throttled and these methods have different throttling rates, ranging from 5 p/m to 100 p/m. It's not acceptable to limit all requests to 5 p/m as some methods (i.e. the ones with higher throttling limits) must be accessed more frequently.
How can I implement throttling control in my project which allows me to specify different throttling limits for different methods?
Cheers,
Pete