WaitAll不起作用ASP

WaitAll不起作用ASP

本文介绍了ManualResetEvent WaitHandle.WaitAll不起作用ASP.NET的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

请检查以下代码.当我在IIS上运行以下代码时,它对我有用.但是,当我尝试远程运行它时,WaitHandle.WaitAll(resetEvents)没有阻塞,并且没有等待ThreadB的所有实例完成.知道可能是什么原因造成的吗?

Please examine the below Code. When I run the below code on IIS, its working for me. But when i try to run it remotely, the WaitHandle.WaitAll(resetEvents) is not blocking and is not waiting for all instances of ThreadB to finish. Any idea on what could be causing it?

class ABC
{
    ManualResetEvent[] resetEvents;


    function StartThreadPool()
    {

        resetEvents =new ManualResetEvent[20];
        for(int i=0; i<20; i++)
        {
            resetEvents[i]=new ManualResetEvent(false);
            ThreadPool.QueueUserWorkItem(new WaitCallback(ThreadB), (object) i);
        }
        WaitHandle.WaitAll(resetEvents);

    }


    void ThreadB(object index_para)
    {
        int index =(int)index_para;
        //Do tast here..functioncall();
        resetEvents[index] .Set();
    }

}

推荐答案


这篇关于ManualResetEvent WaitHandle.WaitAll不起作用ASP.NET的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-23 05:03