DEV Community

Cecil L. Phillip 🇦🇬 for .NET

Posted on

On.NET Episode: Working with Channels in .NET

Channels enable a producer to safely pass data over to a consumer along with the appropriate notifications in both directions.

In this episode, Stephen Toub chats with Rich about the what, why and how of using the System.Threading.Channels library. They walk us through a simple demo of using channels and also discuss the various strategies at our disposal.

If you liked this video and would like to see some more of our .NET content, please subscribe to our .NET Developers YouTube Channel.

Useful Links

Top comments (2)

Collapse
 
kenakamu profile image
Kenichiro Nakamura

Great video.

Collapse
 
antdimot profile image
Antonio Di Motta

I don't understand what are the use cases about this new abstraction. If the goal is to decouple a publisher and subscriber I know that already exists others useful class in .Net.