两个后台工作人员,一个列表
我需要让这两个线程在通用列表上持续工作,一个线程应该将项目添加到列表中,另一个线程应该“消耗”这些项目(只需查看它们,根据项目的某些属性执行需要完成的操作,然后将其删除)。
注意:我是初学者,所以任何有关如何执行此操作的见解都将受到赞赏。
我正在考虑 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不安全。您将需要锁定读取和写入。这是典型的生产者/消费者问题。
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.