Anyone have any suggestions for books on the subject of Reactive Expressions Extensions? I'm intrigued but finding nothing. Is there a more general term I need to look for? Is the technology still too new?

link|improve this question

I just wanted to note that Erik Meijer has said informally during some interview I watched that writing a book on Rx was one of the tasks on his plate "this year" ... don't know how it's coming along or when it may be finished, but I imagine it won't be for a while yet. – Richard Hein Dec 8 '10 at 2:27
feedback

closed as not constructive by Bill the Lizard Sep 24 '11 at 14:55

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

6 Answers

up vote 6 down vote accepted

It's still too new for books, although I'm sure someone must be at least thinking about writing one. It doesn't help that the Microsoft Documentation isn't amazing at the moment.

Two things you might want to look at:

The recently released Rx Design Guidelines that aid in developing applications and libraries that use the Reactive Extensions library.

The RxAs docs (RxAs is a port of Rx for ActionScript). Although you probably do not need the ActionScript version, the GitHub pages have a fully featured list of the rx operators, a description of what they do and more importantly a marble diagram for each. If I'm unsure what the MS documentation actually means I normally head over to these pages to see if the same operator has been implemented. They may not be implemented in exactly the same way but generally it's a good starting point to get your head round what certain operators do.

link|improve this answer
The Rx Design Guidelines are a great resource. I hadn't seen them before this. Definitely required reading once you get past the "What the heck is going on?" point. – Bryan Anderson Nov 23 '10 at 18:31
Its good to know that I'm early to the party for once. I really need a book. Specifications have always been a bit to daunting for me. Thanks :) – Jordan Nov 28 '10 at 16:36
feedback

One thing that helped me a lot was the RxSandbox application - last time I used it, it wasn't updated to the latest Rx.NET version so you have to compile from the source (it's easy though, just open the project and hit F5, VS will fix up the dependency problems that stop the bins from working)

link|improve this answer
feedback

@Jon Skeet's C# in Depth puts in context well in Chapter 12 as part of a highly recommended book on C#

Jesse Liberty says he's writing a book in this Silverlight TV podcast on the very topic) with a member of the Rx team, Paul Betts (who references the book project here in this MS Forum post) which I personally would definitely shortlist based on the quality of Jesse's general output.


I personally learned most from this live session with Bart de Smet, which there's a video of on Channel 9 here.

link|improve this answer
Awesome, I have to check out this video. Thanks for the update. :) – Jordan Aug 10 '11 at 17:39
@Jordan: Thanks; NB I fixed the podcast link after you responded. – Ruben Bartelink Aug 10 '11 at 23:05
feedback

I'm not aware of any books right now but the Channel 9 videos are an excellent way to get started. 101 Rx samples is a good resource for simple examples and I have some blog posts up with a few more.

link|improve this answer
feedback

I do not know about any books, but I find the following resources handy:

  1. Rx in 15 Minutes video (high level overview)
  2. Rx Hands-On Labs
  3. 101 Rx Samples on Rx Wiki and Rx Wiki generally - there is a list of tutorial videos from Channel9
  4. Rx Design Guidelines
  5. If you use MVVM, check RxXaml
link|improve this answer
feedback

Not a book, but an excellent explanation of the event-composition operators of Rx:

Rx: Event composition – single-valued and multi-valued

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.