i just want to know if there is a way we can make a request wait when implementing concurrent rate limit policy?
Solved! Go to Solution.
NO, It's an anti-pattern of REST APIs.
APIs are in general stateless. You shouldn't be having any state by making them queue up / do retry.
Offload this functionality to client / backend system.
Hope it helps.
-------------------------------
Anil Sagar