gpt4 book ai didi

c# - IProgress 不会在当前上下文中触发事件

转载 作者:行者123 更新时间:2023-12-01 22:03:45 26 4
gpt4 key购买 nike

我已经成功实现了 Task在我的类 UpdateManager 中,它从我的网络空间下载文件。

public async Task DownloadPackageTask(IProgress<int> progress) 
{
var webRequest = WebRequest.Create(new Uri("http://www.mywebspace.de/archive.zip"));
using (var webResponse = await webRequest.GetResponseAsync())
{
var buffer = new byte[1024];
FileStream fileStream = File.Create("Path"));
using (Stream input = webResponse.GetResponseStream())
{
int received = 0;
double total = 0d;
var size = GetFileSize(new Uri("...")); // Gets the content length with a request as the Stream.Length-property throws an NotSupportedException
if (size != null)
total = (long) size.Value;

int size = await input.ReadAsync(buffer, 0, buffer.Length);
while (size > 0)
{
fileStream.Write(buffer, 0, size);
received += size;
progress.Report((received/total)*100));
size = await input.ReadAsync(buffer, 0, buffer.Length);
}
}
}
}

效果很好,文件正在下载,如果我添加 Debug.Print((received/total)*100)它输出正确的百分比,一切都很好。该方法被标记为异步,以便可以在任务中异步等待/包装它。问题发生在另一个类 UpdaterUi 中,它基本上是管理器和用户界面之间的接口(interface),并调用如下方法:

            public void ShowUserInterface()
{
TaskEx.Run(async delegate
{
var downloadDialog = new UpdateDownloadDialog
{
LanguageName = _updateManager.LanguageCulture.Name,
PackagesCount = _updateManager.PackageConfigurations.Count()
};

_context.Post(downloadDialog.ShowModalDialog, null); // Do this with a SynchronizationContext as we are not on the UI thread.

var progressIndicator = new Progress<int>();
progressIndicator.ProgressChanged += (sender, value) =>
downloadDialog.Progress = value;


await TaskEx.Run(() => _updateManager.DownloadPackageTask(progressIndicator));
});
}

它从不调用应该在进度发生变化时立即调用的匿名方法,但什么也没有发生,我用断点调试了它。

问题可能是 progressIndicator不是在 UI 线程上创建的,而是在 TaskEx.Run 创建的新线程上创建的。它不会触发事件,并且 UI 不会连续更新它包含的进度条(它在上面初始化的 Progress 属性的 setter 中执行此操作)。

问题是我不知道该怎么做才能使其正常工作,我应该如何更改项目中的实现以使其正常工作,我对线程问题的想法是否正确?

提前致谢!

最佳答案

您对问题的猜测是正确的。 Progress<T>应在 UI 线程中创建,以便在 UI 线程中收到通知。

它的工作原理是捕获 SynchronizationContext并发布委托(delegate)以在捕获的上下文中执行。由于它是在非 UI 上下文(默认上下文或线程池上下文)中创建的,因此它将引发 ProgressChanged在线程池线程中。

如果移动此行var progressIndicator = new Progress<int>();TaskEx.Run ,它应该可以工作(如果从 UI 线程调用 ShowUserInterface)。

我看到您正在创建UpdateDownloadDialog在工作线程中。你不应该这样做。将其也移至 UI 线程。

关于c# - IProgress<T> 不会在当前上下文中触发事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29328185/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com