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?
|
|
||||
|
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.
|
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. |
|||||
|
|
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) |
|||
|
|
|
@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. |
|||||
|
|
I do not know about any books, but I find the following resources handy:
|
||||
|
|
|
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. |
|||
|
|
|
Not a book, but an excellent explanation of the event-composition operators of Rx: |
|||
|
|