Reactive Extensions - .NET Asynchronously
Written by Alex Armstrong   
Wednesday, 04 May 2011

Rx 1.0, the first full version of the Reactive Extensions.NET library, is now available for download from Microsoft.


Reactive Extensions (Rx) is Microsoft's .NET library aimed at making it easy to create asynchronous and event based programs using observable collections and LINQ-style queries. It is a superset of LINQ's standard query operators that turn asynchronous or event-driven code into push based observable collections. 

The idea is that you are familiar with the IEnumerable<T> interface - a pull-based enumerator where you have to call the enumerator to get the next item. Using an IObservable<T> collection you subscribe to the collection and it notifies clients when a new item is available. This is simple enough but add to the mix Rx LINQ and you can build asynchronous queries and processing chains. Essentially what is going on is that the stream of asynchronous data is being treated as if it was a standard collection or database.

Rx works on the desktop in .NET 4.0, XBox and in Silverlight and Windows Phone 7. You can imagine that Rx would be particularly useful in an environment where realtime events such as location sensors have to be handled.

VS

More Information

Download Rx 1.0

Reactive Extensions (Rx) website

 

Banner


DuckDB And Hydra Partner To Get DuckDB Into PostgreSQL
11/11/2024

The offspring of that partnership is pg_duckdb, an extension that embeds the DuckDB engine into the PostgreSQL database, allowing it to handle analytical workloads.



Lightbend Announces Akka 3
15/11/2024

Lightbend, the company that developed Akka, has announced Akka 3, and has changed its name to Akka. The company produces cloud-native microservices frameworks, and Akka is used for building distribute [ ... ]


More News

Last Updated ( Wednesday, 04 May 2011 )