欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

C# 总结QueueUserWorkItem传参几种方式案例详解

程序员文章站 2022-06-22 16:10:11
最近在学习citrix的xenserver6.2的源代码,发现多处用到system.threading命名空间下的threadpool.queueuserworkitem方法:public stati...

最近在学习citrix的xenserver6.2的源代码,发现多处用到system.threading命名空间下的threadpool.queueuserworkitem方法:

public static bool queueuserworkitem(waitcallback callback, object state);
publicstaticbool queueuserworkitem(waitcallback callback);

参数waitcallback 本身是一个delegate,它在system.threading命名空间中的定义如下:

[comvisible(true)]
public delegate void waitcallback(object state);

 于是问题来了,该如何给queueuserworkitem传参呢?以下是我遇到的一些方式:

1,直接传delegate。(不明白object o去了哪里?)

threadpool.queueuserworkitem(delegate
{
  for (int i = 0; i < 20 && targetnode.nodes.count == 0; i++)
  {
    thread.sleep(100);
  }
  mainwindowcommandinterface.invoke(delegate { targetnode.expand(); });
});

2,直接传方法名。

threadpool.queueuserworkitem(waitforreboot, connection);
private void waitforreboot(object o)
{
}

3,用delegate构造一个waitcallback。

threadpool.queueuserworkitem(new waitcallback(delegate(object o)
{
  clientfillrectangle(0, 0, desktopsize.width, desktopsize.height, color.black);
}), null);

4,用含一个object类型的方法connect构造一个waitcallback。

threadpool.queueuserworkitem(new waitcallback(connect), new keyvaluepair<vncgraphicsclient, exception>(vncclient, null));
private void connect(object o)
{
}

5,waitcallback类型的delegate。

threadpool.queueuserworkitem((waitcallback)delegate(object o)
{
  // sleep a short time before closing the splash
  thread.sleep(500);
  program.invoke(program.mainwindow, program.closesplash);
});

6,直接传lambda表达式。

threadpool.queueuserworkitem(o =>
{
  program.invoke(program.mainwindow, () =>
  {
    performstoragesystemscan();
    if (systemsafter.count > systemsbefore.count)
    {
      // the new item should be selected
.      comboboxstoragesystem.selecteditem = systemsafter.find(ss => !systemsbefore.contains(ss));
      comboboxstoragesystem.droppeddown = true;
    }
  });
});

到此这篇关于c# 总结queueuserworkitem传参几种方式案例详解的文章就介绍到这了,更多相关c# 总结queueuserworkitem传参几种方式内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!