Due to my company's applications architecture, I need to develop a Kestrel based web server. The main feature that this web server must have is that it needs to maintain a requests queue whose response will be sent at some point in the future (when another app notifies that it can be sent).
Considering that HttpContext is reused for each request, I don't think it'll be possible.
Does anyone have any idea on how I can deal with this problem?
Thanks in advance.