两个后台工作人员,一个列表

发布于 2024-12-08 02:20:40 字数 290 浏览 0 评论 0原文

我需要让这两个线程在通用列表上持续工作,一个线程应该将项目添加到列表中,另一个线程应该“消耗”这些项目(只需查看它们,根据项目的某些属性执行需要完成的操作,然后将其删除)。

注意:我是初学者,所以任何有关如何执行此操作的见解都将受到赞赏。

我正在考虑 2 个带有 while(1) 循环的 BackgroundWorkers(当然接受取消),并将 List 对象作为参数传递给两者。

这可能/安全吗?我应该怎么做才能保证安全?

(如果您需要更多信息,请在评论中注明,我会编辑)

谢谢!

I need to have these 2 threads working constantly on a Generic List, one thread should Add items to the list, the other should "consume" the items (just look at them, do what needs to be done depeding on some of the item's properties, and then remove it).

NOTE: I'm a begginner, so any insight on how to do this is appreciated.

I'm thinking 2 BackgroundWorkers with a while(1) loop (accepting cancellations of course), with the List object passed as Argument to both.

Is this possible/safe? What should I do to make it safe?

(If you need more information, please specify what in the comments, and I'll edit this)

Thanks!

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

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

发布评论

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

评论(1

想你的星星会说话 2024-12-15 02:20:40

不安全。您将需要锁定读取和写入。这是典型的生产者/消费者问题。

http://blogs.msdn.com/b/csharpfaq/archive/2010/08/12/blocking-collection-and-the- Producer-consumer-problem.aspx

如果您如果使用 .NET 4,您可以在此处有效地使用 BlockingCollection。

Not safe. You will need locking around both reading and writing. This is the classic producer/consumer problem.

http://blogs.msdn.com/b/csharpfaq/archive/2010/08/12/blocking-collection-and-the-producer-consumer-problem.aspx

If you're using .NET 4, you can use the BlockingCollection effectively here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文