我正在学习 Task 的工作原理。我一直使用 BackgroundWorker 类或 Threading.Thread 类,所以我想尝尝 Task Factory。
在我正在构建的以下示例中,我恢复了一个
Task<List<People>>
并为其分配一个“ContinueWith”,我希望在任务完成后调用它。
我已经完成了一些之前的例子,这些例子非常棒,但这一个冻结了我的
启动应用程序时的主窗体 UI。(我看不出与我做过的其他例子有什么不同)。
你们知道为什么我的主界面冻结了吗?
PS:我知道我声明
System.Threading.Tasks.TaskScheduler scheUI
在任务声明上。我现在不使用,但稍后会使用。
提前致谢:
这是代码:
private void PopulateList(List<People> list)
{
if (listBox1.InvokeRequired)
{
listBox1.Invoke((MethodInvoker) delegate {
foreach (People item in list)
{
listBox1.Items.Add(item.name + " " + listBox1.Items.Add(item.surname));
}
});
}
}
private Task<List<People>> GetPeopleListAsync(int PeopleNuber, int delaysecs)
{
TaskScheduler scheUI = TaskScheduler.FromCurrentSynchronizationContext();
return Task<List<People>>.Factory.StartNew( () =>
{
List<People> listado = new List<People>();
for (int i = 0; i < PeopleNuber; i++)
{
People people = new People
{
name = "Name" + i.ToString(),
surname = "Surname " + i.ToString()
};
Thread.Sleep(delaysecs * 200);
listado.Add(people);
}
return listado;
},CancellationToken.None,
TaskCreationOptions.None,scheUI);
}
void Form1_Load(object sender, EventArgs e)
{
Task<List<People>> task = GetPeopleListAsync(5, 10);
task.ContinueWith(p => PopulateList(task.Result));
}