What is the killer benefit of Reactive Extensions (for either .NET or JavaScript)? Why should a developer learn and use them?

link|improve this question

feedback

1 Answer

up vote 12 down vote accepted

Reactive Extensions gives developers a way to compose complex event processing and asynchronous computation across Observable collections using a much more functional and declarative syntax.

A fairly simple example can be found at:

Mike Chaliy: Reactive Extensions AI: Domain Events Example

The clincher for me, even on a simple example, is this:

...notify manager about all noticeable transfers.

Account.TransferMoney
       .Where(_ => _.Amount > 100.0m)
       .Subscribe(_ => SendMessageToManager());

As you can see, subscribing using Rx clearly defines our intent in a clear and concise manor. You can imagine chaining together complex logic (much like a complex LINQ query) to make some very interesting functionality.

You might also want to take a look at:

Reactive Framework (Rx) Wiki: (not yet) 101 Rx Samples

link|improve this answer
While I agree that Reactive Exensions make the completion handler clear, I believe that the 'await' keyword in C# 5 will make it even clearer. Reactive Extensions are great at doing things like - "waiting for multiple async operations to complete". – Phillip Ngan Nov 9 '11 at 3:17
feedback

Your Answer

 
or
required, but never shown

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