Thread-safe blocking queue implementation on .NET

后端 未结 7 780
無奈伤痛
無奈伤痛 2020-12-15 07:28

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

相关标签:
7条回答
  • 2020-12-15 08:09

    How about this one Creating a blocking Queue in .NET?

    If you need it for .NET 1.1 (I wasn't sure from the question), just drop the generics and replace T with object.

    0 讨论(0)
提交回复
热议问题