0

我在我的代码中使用线程,线程是使用函数创建的:

private void InitializeBackgoundWorkers()
{

    for (int f = 0; f < maxThreads; f++)
    {
        listBox1.Items.Insert(0, "Starting Thread : " + (f + 1));
        threadArray[f] = new BackgroundWorker();
        threadArray[f].DoWork +=
            new DoWorkEventHandler(backgroundWorkerFiles_DoWork);
        threadArray[f].RunWorkerCompleted +=
            new RunWorkerCompletedEventHandler(backgroundWorkerFiles_RunWorkerCompleted);
        threadArray[f].ProgressChanged +=
            new ProgressChangedEventHandler(backgroundWorkerFiles_ProgressChanged);
        threadArray[f].WorkerReportsProgress = true;
        threadArray[f].WorkerSupportsCancellation = true;

    }
}

doevent 是这样的:

private void backgroundWorkerFiles_DoWork(object sender, DoWorkEventArgs e)
{

    BackgroundWorker worker = sender as BackgroundWorker;

    int flag = 0;

    while (rowCounter < allPostingRows.Tables[0].Rows.Count && flag == 0)
    {

        for (int i = 0; i < maxThreads; i++)
        {

            if (threadArray[i].CancellationPending == true)
            {
                flag = 1;
                threadArray[i].CancelAsync();
                worker.ReportProgress(0, "Thread Paused:");
            }

        }

        if (flag == 0)
        {
             //perform work here
            }
    }
}

在按钮上,我尝试使用以下方法取消线程:

for (int i = 0; i < maxThreads; i++)
{
    threadArray[i].CancelAsync();
}

我是否正确取消了线程?当他们被取消时,我看到列表框中的行说线程已取消,所以它确实进入了取消代码,但一段时间后它重新启动

谢谢

4

1 回答 1

0

我不认为你真的明白BackgroundWorkerDoWork事件处理程序应该是一个工作单元的处理程序 。DoWork用一个线程调用。CancelAsync从处理程序中调用是没有意义的DoWork——它独立于任何和所有其他BackgroundWorker的。在DoWork处理程序中,它应该只检查一个CancellationPending,即发送者的(一旦转换为BackgroundWorker,在您的情况下worker)。

但是,否则,从 UI 调用CancelAsync是取消特定BackgroundWorker.

后台工作人员不是“线程”。您不是在取消线程,而是在取消工作程序——这使 DoWork 处理程序有机会在完成工作之前退出。

于 2012-07-31T19:01:24.803 回答