755 Views
The BlockingCollection class is great, however many use cases are actually more specific to queuing. Solution: create a generic BlockingQueue!
1 comments
dpeterson
6/25/2012 8:50:32 AM
So these blocking queues then are meant to be shared between the synchronous and asynchronous code? You enqueue items from your synchronous code then dequeue them from the asynchronous code as they're processed?