ThreadPool 线程完成其工作后调用方法

发布于 2024-12-16 17:26:31 字数 169 浏览 0 评论 0原文

我必须在 ThreadPool 上作为单独的线程运行一些代码。

ThreadPool.QueueUserWorkItem(MyMethod,MyObjects);

MyMethod 完成后,我需要运行另一个方法 MyMethod2。我怎样才能做到这一点?

I have to run some piece of code as a separate thread on ThreadPool.

ThreadPool.QueueUserWorkItem(MyMethod,MyObjects);

I need to run another method MyMethod2 once MyMethod is completed. How can I do that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

世界和平 2024-12-23 17:26:31

这是一种方法:

ThreadPool.QueueUserWorkItem(o => { MyMethod(o); MyOtherMethod(); }, MyObjects);

Here's a way to do it:

ThreadPool.QueueUserWorkItem(o => { MyMethod(o); MyOtherMethod(); }, MyObjects);
咽泪装欢 2024-12-23 17:26:31

您可以改用任务并行库 (TPL):

Task.Factory.StartNew(() =>
    {
        //your method call(s) here
    })
    .ContinueWith((task) =>
    {
       //your on completion code here
    });

You could use the Task Parallel Library (TPL) instead:

Task.Factory.StartNew(() =>
    {
        //your method call(s) here
    })
    .ContinueWith((task) =>
    {
       //your on completion code here
    });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文