关于[Producer-Consumer Applications With .NET Channels]的摘要:
When building applications, usually we need to create long-running background tasks, that can be sent to one or more background processes. This is known as a producer/consumer pattern. For these scenarios, we need something more robust than a first-in, first-out queue, but we don’t need the complexity and infrastructure involved in a message broker such as RabbitMQ, which is where Channels comes in.
原文地址: https://code-maze.com/dotnet-producer-consumer-channels/