I'm wondering if someone could guide me in the right direction for creating a synchronous queue of requests to a server that requires this pattern.
I would like to keep using the already implemented async/await pattern in my code and also be able to enqueue both GET and POST requests that are generic in both upload parameters as well as downloaded result (which will be serialized with JSON).
Any suggestions?