Stephen Cleary — Asynchronous streams
DotNext — конференция для .NET‑разработчиков DotNext — конференция для .NET‑разработчиков
20.4K subscribers
13,040 views
285

 Published On Mar 10, 2020

Подробнее о конференции DotNext: https://jrg.su/3WmFRE
— —
Про Стивена Клири можно сказать «он всерьез занялся многопоточным программированием еще до того, как это стало модным». Клири стал палочкой-выручалочкой для тысяч разработчиков, терпеливо объясняя на StackOverflow почему программы не работают и как их исправить. Свой опыт Стивен Клири обобщил в книге «Concurrency in C# Cookbook: Asynchronous, Parallel, and Multithreaded Programming».

Asynchronous iteration landed in JavaScript last year, and C# is following up with its async streams. This presentation looks at why these new asynchronous streams are useful, how they are different from existing libraries like System.Reactive and RxJS, and how to use them in your projects.

We'll start with a conceptual overview of why asynchrony is important, and the impact that async/await has had on modern languages. Then we'll address one of the common shortcomings of async/await: the fact that it only deals with single values.

We'll briefly review library-based approaches for dealing with streams of asynchronous data, including the classic producer/consumer queues as well as the more modern reactive approaches. Finally, we'll address how true pull-based asynchronous streams require language constructs and examine consuming and producing asynchronous streams in C#.

By the end of this session, you'll be equipped to handle asynchronous streams in your projects.

show more

Share/Embed