What is the killer benefit of Reactive Extensions (for either .NET or JavaScript)? Why should a developer learn and use them?
What is the killer benefit of Reactive Extensions (for either .NET or JavaScript)? Why
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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:
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