Reactive Extension (Rx) tutorial that is up to date

前端 未结 4 947
终归单人心
终归单人心 2021-01-29 19:49

I am quite interested in Reactive Extensions but I cannot find an up to date tutorial. I started with Curing the asynchronous blues with the Reactive Extensions for .NET but it

4条回答
  •  北海茫月
    2021-01-29 20:14

    When learning Rx the first thing is to understand the philosophy behind IObservable and how it's push based nature compares with IEnumerable. I suggest the following one for a good explanation: A[nother] Simpler Tutorial for Reactive Extensions

    Lee Campbell has nice series explaining the api and when to use them. He also tries to keep it up to date with latest releases: Reactive Extensions for .NET an Introduction The series is now available as a book at Introduction to Rx

    By the way, I have also written a blog post about solving real life problem with rx: Using Reactive Extensions for Streaming Data from Database

    Hope this helps.

提交回复
热议问题