Skip to main content

The Reactive Extensions (Rx)...

...is a library to compose asynchronous and event-based programs using observable collections and LINQ-style query operators.


 

Get it
Get it
Get Started
Beginner's Guide
Learn more
Learn more

 

About the Reactive Extensions

The Reactive Extensions (Rx) is a library for composing asynchronous and event-based programs using observable sequences and LINQ-style query operators. Using Rx, developers represent asynchronous data streams with Observables, query asynchronous data streams using LINQ operators, and parameterize the concurrency in the asynchronous data streams using Schedulers. Simply put, Rx = Observables + LINQ + Schedulers.

Whether you are authoring a traditional desktop or web-based application, you have to deal with asynchronous and event-based programming from time to time. Desktop applications have I/O operations and computationally expensive tasks that might take a long time to complete and potentially block other active threads. Furthermore, handling exceptions, cancellation, and synchronization is difficult and error-prone.

Using Rx, you can represent multiple asynchronous data streams (that come from diverse sources, e.g., stock quote, tweets, computer events, web service requests, etc.), and subscribe to the event stream using the IObserver<T> interface. The IObservable<T> interface notifies the subscribed IObserver<T> interface whenever an event occurs.

Because observable sequences are data streams, you can query them using standard LINQ query operators implemented by the  Observable type. Thus you can filter, project, aggregate, compose and perform time-based operations on multiple events easily by using these static LINQ operators. In addition, there are a number of other reactive stream specific operators that allow powerful queries to be written.  Cancellation, exceptions, and synchronization are also handled gracefully by using the extension methods provided by Rx.

Reactive Extensions Highlights Entity Framework Highlights

Reactive Extensions

This feed, No Title, currently has no items to display.

 

Team Blog Posts

Reactive Extensions

Rx 2.1 is available on NuGet!
To follow up on our announcement of releasing Rx 2.1 , we'd like to let you know what changed in thi... more
Wednesday, Feb 6 Rx team
Update on Windows Phone 8 support for Rx v2.0
Last week, an update for Rx v2.0 was released, adding support for Windows Phone 8. Unfortunately, a... more
Wednesday, Nov 14 Rx team
The Reactive Extensions for JavaScript (RxJS) V2.0 now released
Hot on the heels of the announcement of the availability of the Reactive Extensions for .NET v2.0 RT... more
Wednesday, Sep 19 Rx team
Reactive Extensions v2.0 has arrived!
Today, we’re extremely pleased to announce the availability of Reactive Extensions for .NET (Rx) v2.... more
Wednesday, Aug 15 Rx team

More...

Microsoft is conducting an online survey to understand your opinion of the MSDN Web site. If you choose to participate, the online survey will be presented to you when you leave the MSDN Web site.

Would you like to participate?