350 Views
We implement an asynchronous blocking queue using F# agents. The queue is similar to BlockingCollection in .NET 4.0, but blocks asynchronously (using F# workflows), which is more scalable. The type can be used, for example, when implementing the pipeline pattern as demonstrated in previous article.
0 comments