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 cal
For the reference, .NET 4 introduces the System.Collections.Concurrent.BlockingCollectionConcurrentQueue would likely be used as the underlying datastore for the BlockingCollection for the OP's usage.