2
In my system, I have some auxiliary routines, which are fired at defined times, outside of work hours.
These routines are run by a Windows service program.
Would you need to run these asynchronous services? That is, using methods async
?
So I know the main reason for using methods async
is not to lock the user screen while running some task.
Now, for service I see not so much reason to use such methods.