我找不到取消在后台线程上运行的异步调用的方法。 假设我有这样的事情:
private async void myMethod()
{
String result = await Task.Run(async () => await myTimeConsumingMethod());
//Do stuff with my result string...
}
这里我在后台线程上调用异步方法,因为我没有任何循环,所以不能做类似的事情:
for (i = 0; i < someBigNumber; i++)
{
token.ThrowIfCancellationRequested();
await doSomeWork();
}
相反,我只有一次异步方法调用可能需要10秒以上才能完成,我无法检查该方法中是否已取消该令牌,因为我正在等待异步调用完成。
这就是我想要实现的目标:
private async void myMethod()
{
String result = await Task.Run(async () => await myTimeConsumingMethod());
//Override the HardwareButtons.BackPressed event (I already have a method for that)
//When the await is completed, the String is the result of the async
//call if the method has completed, otherwise the result String
//should be set to null.
}
问题是我不知道在HardwareButtons.BackPressed
事件中使用什么代码来终止我的异步调用。
我的意思是,我真的想“终止它的进程”并使Task.Run立即返回null。
有办法吗?
这是myTimeConsumingMethod()的实现:
public static async Task<String> ToBase64(this StorageFile bitmap)
{
IRandomAccessStream imageStream = await CompressImageAsync(bitmap);
BitmapDecoder decoder = await BitmapDecoder.CreateAsync(imageStream);
PixelDataProvider pixels = await decoder.GetPixelDataAsync();
byte[] bytes = pixels.DetachPixelData();
return await ToBase64(bytes, (uint)decoder.PixelWidth, (uint)decoder.PixelHeight, decoder.DpiX, decoder.DpiY);
}
答案 0 :(得分:2)
这是不可能的。您可以创建将在现有操作完成时完成的Task
,或者如果取消取消令牌将其标记为已取消,但实际上不会停止原始操作,只是允许程序继续执行,尽管事实上,这项行动尚未实际完成。
有关此主题的详情,请参阅this blog article。