我有一个任务来获取我的数据。我有另一个属性,如果更改会取消任务并再次启动任务,但使用下面显示的不同参数。
private CancellationTokenSource CTS = new CancellationTokenSource();
private void LoadMyStuff(string parameter)
{
Task<List<Stuff>> loadStuff = new Task<List<Stuff>>(() => ServiceMethod(parameter));
loadStuff.Start();
loadStuff.ContinueWith((Sender) =>
{
foreach (var entry in Sender.Result)
{
if (!CTS.IsCancellationRequested)
{
//Proccess my data
}
else
{
CTS.Cancel();
return;
}
}
}, CTS.Token, TaskContinuationOptions.OnlyOnRanToCompletion, TaskScheduler.FromCurrentSynchronizationContext());
loadStuff.ContinueWith((Sender) =>
{
//Clean Up
}, CTS.Token, TaskContinuationOptions.OnlyOnFaulted, TaskScheduler.FromCurrentSynchronizationContext());
}
财产:
private Thing _myThing
public Thing MyThing
{
get { return _myThing; }
set
{
_myThing= value;
CTS.Cancel();
LoadMyStuff(parameter);
}
}
所以我的问题是我总是在这种情况下完成之前取消任务。我如何获得这种情况,其中任务的第一个实例取消但从MyThing
属性触发的第二个实例一直运行到完成?