线程安全替代Thread.Sleep,它允许c#中的浏览器活动

时间:2011-11-30 21:16:55

标签: c# winforms multithreading

我需要一个简单的等待函数,它允许浏览器事件处理并且是线程安全的。一位同事说,在使用多个线程时永远不要使用DoEvents。

我注意到当我使用Thread.Sleep(10000);时,我的浏览器活动会暂停,直到睡眠完成。

有人可以推荐替代品吗?

以下是一些代码:

    public static int f_sleep(int time)
    {

        System.DateTime now = System.DateTime.Now;
        System.TimeSpan duration = new System.TimeSpan(0, 0, 0, time);
        System.DateTime then = now.Add(duration);


        Thread this_thread = Thread.CurrentThread;
        while (then > DateTime.Now)
        {
            //MessageBox.Show("NewTime:" + then + "Now:" + DateTime.Now);
            //we do not want to use this because it's said to mess up multithreading
            Application.DoEvents();

            //Thread.CurrentThread.Sleep(10);
            Thread.Sleep(10);
        }           

        return 1;
    }

    private void f_run_selected_campaigns(object sender, EventArgs e)
    {
        jobs_datagrid.EndEdit();

        int count_active = 0;
        foreach (DataGridViewRow row in jobs_datagrid.Rows)
        {

            //MessageBox.Show(row.Cells[1].Value.ToString());
            if (row.Cells[1].Value.ToString() == "True")
            {
                count_active++;



                //troubleshooting
                Thread this_thread = new Thread(() =>
                    this.Invoke((MethodInvoker)delegate
                    {
                        test("hello");
                    }
                ));

                //threading properties
                this_thread.Name = "thread_" + row.Cells[0].Value.ToString();
                this_thread.IsBackground = true;
                this_thread.Start();

            }

        }

        if (count_active == 0)
        {
            MessageBox.Show("No campaigns are selected!");

        }
    }

    private void test(string this_string)
    {

        MessageBox.Show(this_string);
        //Thread.Sleep(1000);
        f_sleep(10); //for some reason Thread.Sleep does not work well with my browser loading waiting so I drew this up to create a temp pause in the code logic, but it's causing my threads to not run asychronously
        MessageBox.Show("Thread Done");
    }

我仍然无法找到解决方案。我认为会有一个简单的方法可以暂停逻辑流程,同时允许UI元素和webbrowsers进行处理。

现在我正在使用这两个来满足我的处理需求,无论这种情况是否会在我多线程时回来咬我......我不知道。

    private int WaitBrowserLoading(Control browser)
    {
        lock(_locker)
        {
            tabcontrol_browser.Invoke((MethodInvoker) delegate {
                for (int i = 0; i < 1000000; i++)
                {
                    if(((WebBrowser)browser).ReadyState != WebBrowserReadyState.Complete)
                    {
                        Application.DoEvents();
                        Thread.Sleep(10);
                    }else
                    {
                    break;
                    }
                } 

            });
            return 1;
        }

    }

    public static int f_sleep(int time)
    {
        System.DateTime now = System.DateTime.Now;
        System.TimeSpan duration = new System.TimeSpan(0, 0, 0, time);
        System.DateTime then = now.Add(duration);

        while (then > DateTime.Now)
        {
            Application.DoEvents();
            Thread.Sleep(10);
        }

        return 1;

    }

6 个答案:

答案 0 :(得分:3)

永远不要使用Thread.Sleep()等待其他事情完成。

如果您的应用正在等待浏览器控件完成加载页面或网址,您应该在浏览器控件上挂钩一个事件,以便它在完成加载时告诉您。你还没有说过你正在使用什么浏览器控件,但是找一个名为“Loaded”或“PageLoaded”或“AfterNavigation”之类的事件或者其他事件。

如果您的代码中有一系列步骤并且让浏览器加载特定的URL就在这些步骤的中间,那么您应该将剩余的步骤移动到浏览器控件的页面加载事件处理程序中,以便它们将被执行页面加载后。

答案 1 :(得分:2)

我不确定你究竟在寻找什么,但也许是:

System.Windows.Forms.Timer myTimer = new System.Windows.Forms.Timer();

public Form1()
{
    myTimer.Interval = 1000;
    myTimer.Tick += new EventHandler(myTimer_Tick);
    myTimer.Start();
    //Do stuff. 
}

void myTimer_Tick(object sender, EventArgs e)
{
    myTimer.Stop();
    //Do stuff when it ticks.
}

答案 2 :(得分:1)

如果您可以控制浏览器控件所服务的内容,那么可能有效的一件事是延时重定向。为用户提供包含无限循环动画gif进度指示器的页面,其中包含以下内容:

<META HTTP-EQUIV="refresh" CONTENT="5;URL=my-next-page">

此页面将显示进度指示器,5秒后它将重定向到“我的下一页”。

答案 3 :(得分:1)

这会有帮助吗?它只阻止你的新线程。

new Thread(() =>
{
    Thread.Sleep(10000);

    // do stuff
}).Start();

// and we're back, immediately

您也可以使用Task,但要确保等待的人不会阻止其他任务。我的样本是迫使新品牌线程开始的“大锤方式”。

答案 4 :(得分:1)

最后,如果所有其他方法都失败,则在调用DoEvents()时循环可能是一个选项。你需要阅读为什么这种方法不好,以及你应该做些什么来避免它的不良。具体来说,当您的代码处于循环处理DoEvents()时,您应该主动抑制用户输入(读取和丢弃鼠标和键盘事件),否则应用程序的用户将能够与您的应用程序交互以调用菜单命令等,但您的应用程序将不会在等待时处理这些命令。但是,在完成DoEvents()循环后,它将立即处理所有命令。还有其他可能需要担心的事件,(或者如果不这样,那么您的应用程序将显得很笨重),例如即将发生系统关闭的全局通知等。

答案 5 :(得分:0)

如果你在UI线程上执行Thread.Sleep,那么浏览器就无法执行任何操作,因为UI线程正在休眠。我认为这是你的问题。