My requirement is very simple to understand.
I want to call a web service from my Java web application with restriction of maximum 10 webservice calls per minute. Just after 1 minute, I can establish another 10 connection, regardless the state of previous 10 webservice calls (finished or unfinished).
Can somebody guide me the approach to implement this? Any tutorial or helpful links ?
We use RequestThrottler (gist) that's inspired by this blog post.
Usage:
Not that you might have to take care of possible congestion, especially if you plan to wait indefinitely as part of web requests.