Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Pause/Resume loop in Background worker

I have a loop in Background worker in a Winform Application.

I Just used this Code but it won't resume after the Pause.

In the main Class I use this

System.Threading.ManualResetEvent _busy = new System.Threading.ManualResetEvent(false);

Then in My Start Click I wrote this:

      if (!backgroundWorker1.IsBusy)
            {
                MessageBox.Show("Not Busy"); //Just For Debugg
                _busy.Set();
                Start_Back.Text = "Pause";
                backgroundWorker1.RunWorkerAsync(tempCicle);   
            }
            else
            {
                _busy.Reset();
                Start_Back.Text = "Resume";
            }

            btnStop.Enabled = true;

Then in backgroundworker doWork I wrote this:

private void backgroundWorker1_DoWork(object sender, DoWorkEventArgs e)
        {
     m_addTab addTabsInvoke = addTabUrl2;
      Invoke(addTabsInvoke, "http://www.google.com");
        foreach (something)
                {
                    _busy.WaitOne();

                    if (backgroundWorker1.CancellationPending)
                    {
                        return;
                    }
                    if (tabs.InvokeRequired)
                        {
    ......
    ......

I can't understand why pause works while resume doesn't work. Did I wrong something?

like image 316
Jasper Avatar asked Dec 02 '11 16:12

Jasper


1 Answers

My best guess for what you want:

void ResumeWorker() {
     // Start the worker if it isn't running
     if (!backgroundWorker1.IsBusy) backgroundWorker1.RunWorkerAsync(tempCicle);  
     // Unblock the worker 
     _busy.Set();
}

void PauseWorker() {
    // Block the worker
    _busy.Reset();
}

void CancelWorker() {
    if (backgroundWorker1.IsBusy) {
        // Set CancellationPending property to true
        backgroundWorker1.CancelAsync();
        // Unblock worker so it can see that
        _busy.Set();
    }
}
like image 134
Hans Passant Avatar answered Sep 20 '22 01:09

Hans Passant