How to restart/reuse a recurring Task?

前端 未结 3 671
夕颜
夕颜 2020-12-10 03:46

I have a long-running Task that I\'ve implemented using the Task Parallel Library. When the Task starts, I grab snapshots of several input values and collections then perfo

3条回答
  •  南笙
    南笙 (楼主)
    2020-12-10 04:43

    Create a new task.

    As http://msdn.microsoft.com/en-us/library/dd270682.aspx points out, trying to restart a running or completed Task is not supported. It is rarely a good idea to do something that normally throws an exception, and re-using a Task is one of those things.

提交回复
热议问题