There's been quite some hype around the new Reactive Framework in .NET 4.0. While I think I undestood its basic concept I am not completely sold that it is that useful. Can you come up with a good example (that is halfway easy to understand) that totally shows of the power and usefullness of Rx? Show something that makes life so much easier when done with Rx.

link|improve this question

70% accept rate
See one example here: stackoverflow.com/questions/1596158/… – Benjol Nov 18 '09 at 13:37
1  
When is pushing useful? When is pulling useful? – Richard Hein May 2 '10 at 6:11
feedback

1 Answer

up vote 7 down vote accepted

Here is a quick example. Program a drag operation in a fully declarative manner, using LINQ to events.

   //Create an observable with the initial position and dragged points using LINQ to Events
   var mouseDragPoints = from md in e.GetMouseDown()
                           let startpos=md.EventArgs.GetPosition(e)
                           from mm in e.GetMouseMove().Until(e.GetMouseUp())
                           select new
                           {
                             StartPos = startpos,
                             CurrentPos = mm.EventArgs.GetPosition(e),
                           };

And draw a line from startpos to current pos

//Subscribe and draw a line from start position to current position  
            mouseDragPoints.Subscribe  
                (item =>  
                { 
                  //Draw a line from item.Startpos to item.CurrentPos
                }
                ); 

As you can see, there are no event handlers all over the places, nor boolean variables for managing the state.

If you are curious about those GetEventName() methods, suggesting you to read this entire article and download the source code and play with it.

Read it here and play with the source >>

link|improve this answer
Very detailed answer but not so easy to understand. I'll have to do some reading ... – bitbonk Nov 18 '09 at 20:51
The question was just to give an example. Here is a good read if you want to touch the basics - amazedsaint.blogspot.com/2009/11/… – amazedsaint Nov 19 '09 at 3:42
feedback

Your Answer

 
or
required, but never shown

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