Thread-safe blocking queue implementation on .NET

Posted by Shrike on Stack Overflow See other posts from Stack Overflow or by Shrike
Published on 2009-04-29T09:05:42Z Indexed on 2010/05/14 15:24 UTC
Read the original article Hit count: 199

Filed under:
|
|
|

Hello. I'm looking for an implementation of thread-safe blocking queue for .NET. By "thread-safe blocking queue" I mean: - thread-safe access to a queue where Dequeue method call blocks a thread untill other thread puts (Enqueue) some value.

By the moment I'v found this one: http://www.eggheadcafe.com/articles/20060414.asp (But it's for .NET 1.1).

Could someone comment/criticize correctness of this implementation. Or suggest some another one. Thanks in advance.

© Stack Overflow or respective owner

Related posts about .NET

Related posts about multithreading