vote up 6 vote down star
2

Aside from the Microsoft documentation, does anyone know of a good introduction and tutorial to the Microsoft Reactive (Rx) framework?

Also, could someone articulate a good example (with code) of a programming problem that is challenging to solve using conventional asynchronous coding techniques that Reactive makes easier.

Thanks.

flag

52% accept rate
I keep looking - I'll need to see a lot of examples before I have a good idea what it's best used for. – 280Z28 Oct 20 at 17:45

7 Answers

vote up 0 vote down check

Here's a wiki site with lots of code examples demonstrating how to us different features of the .NET Rx framework: http://rxwiki.wikidot.com/101samples

I found this to be the most comprehensive site out there, and the one that's quickest to get started with.

link|flag
vote up 1 vote down

Go through these articles, and in particular, download the related source code and play with it.

Trust this will help

link|flag
vote up 0 vote down

Here's an example of something that is easy to do with reactive programming, but messy (if not challenging) with classic events, it draws lines while the mouse button is down. It is readable, there is no explicit state handling:

var pen = new Pen(Color.Red, 3);
var graphics = this.CreateGraphics();

var mouseMoveWhileDown = 
    from md in this.GetMouseDown()
    from mv in this.GetMouseMove().Until(this.GetMouseUp())
    select new Point(mv.X, mv.Y);

mouseMoveWhileDown
    .Pairwise()
    .Subscribe(tup => graphics.DrawLine(pen, tup.Item1, tup.Item2));

(I must confess that in that example, Pairwise() is home-grown...)

The most important thing about IObservable is that it is 'composable', just like IEnumerable.

I thouroughly recommend the video mentioned in another answer. In fact there are several different videos on the subject on Channel9:

link|flag
vote up 1 vote down

Hello,

I also found following link on CodeBetter.com Introducing the Reactive Framework Part I

There is a sequel to the first part on the same site.

Hope this will help you.

link|flag
vote up 2 vote down

Does your "excluding Microsoft documentation" clause extend to the videos on Channel 9?

From the creator of the reactive framework Erik Meijer: - Expert to Expert: Brian Beckman and Erik Meijer - Inside the .NET Reactive Framework (Rx)

Brand new: Getting Started with Rx Extensions for .NET

link|flag
vote up 1 vote down

You may find these series of articles (there are 4) about reactive linq may be useful: http://tomasp.net/blog/reactive-ii-csevents.aspx

He has an example of writing a game using it, so it should hopefully be what you are looking for.

link|flag

Your Answer

Get an OpenID
or

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