Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|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

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

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

6 Answers

up vote 9 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.

share|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

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)

share|improve this answer

@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.

share|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

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
share|improve this answer

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.

share|improve this answer

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

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

share|improve this answer

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