What happens to work scheduled by Task.Run() after the program terminates?

前端 未结 2 1046
眼角桃花
眼角桃花 2020-12-11 20:55

I was doing some tests with the TPL and async/await and noticed something that I find unexpected: I was scheduling work to run using lambdas and Task.Run, for instance:

2条回答
  •  暖寄归人
    2020-12-11 21:04

    This means that Task.Run is actually a no-go for fire-and-forget scenarios.

    Well, you don't want to forget - you want to wait until it's completed. So use the Task that's returned to you.

    To do that, you'll need to keep track of all uncompleted tasks that you launch this way, and then use something like Task.WaitAll(tasks) in a non-background thread. You potentially don't need to remember the tasks themselves - you just need to have a counter which is decremented when each task completes, and then you just need to wait for that to get to zero.

    It's hard to give more concrete advice than that without knowing more about your scenario, to be honest... but something like that would certainly work.

    You can easily encapsulate this in your own convenience methods, of course.

提交回复
热议问题