I am developing an auction trading system for commercial vehicles within the company in which I work.
Traders can set alerts and whenever a new announcement is sent, I want to use the details of the new listing to search all match alerts, but this should not be the time when a trader needs to wait for confirmation of his successful announcement, so I want to run it in background mode.
My question is: if I tag the async function and not worry about returning, does the ASP.NET MVC Framework still want to wait for the asynchronous function to complete before the request ends?
I know that I can probably verify this, but I'm not sure how, I'm not too deep in my asynchronous books.
Thanks.
c # asynchronous asp.net-mvc
addy_wils
source share