有没有办法使用TaskContinuationOptions像finally?
这是我的代码
ShowLoading();
Task.Factory.StartNew((Action)(() =>
{
_broker.SetDrugDataFromAPI(newDrug);
})).ContinueWith(x =>
{
lock (this)
{
//Do Something to UI
}
}, _uiScheduler).ContinueWith(x =>
{
//Do Somehting after change UI
}).ContinueWith(x =>
{
HideLoading();
}, TaskContinuationOptions.OnlyOnFaulted);
这是我的问题
我想最后使用最后的ContinueWith。 所以,我改变了我的最后一个ContinueWith短语
}).ContinueWith(x =>
{
HideLoading();
}, TaskContinuationOptions.OnlyOnRanToCompletion |
TaskContinuationOptions.OnlyOnFaulted);
我认为在最后一个任务完成或故障时使用它。
但它会引发错误。
我希望有一个很好的方法来解决我的问题。
感谢您阅读我的问题。
答案 0 :(得分:2)
如果您没有指定TaskContinuationOptions
,那么它将在所有状态下运行 - Task
是否出现故障(例外),取消或成功完成。
例如:
using System;
using System.Threading;
using System.Threading.Tasks;
public class Program
{
public static async Task Main()
{
using (var cts = new CancellationTokenSource())
{
var task = Task.CompletedTask
.ContinueWith(t => Console.WriteLine("Run after completed"))
.ContinueWith(t => throw new Exception("Blow up"))
.ContinueWith(t => Console.WriteLine("Run after exception"))
.ContinueWith(t => cts.Cancel())
.ContinueWith(t => Console.WriteLine("This will never be hit because we have been cancelled"), cts.Token)
.ContinueWith(t => Console.WriteLine("Run after cancelled."));
await task;
}
}
}
该程序产生以下输出:
Run after completed
Run after exception
Run after cancelled.