About

System.Reactive refers to the Reactive Extensions for .NET, also known as Rx. It more specifically refers to the use of the System.Reactive.dll assembly, which is part of Rx. This assembly provides classes and query operators and combinators that enable LINQ queries against the IObservable/IObserver interfaces, which together are the mathematical dual to IEnumerable/IEnumerator. Due to the dual nature of these interfaces, any LINQ query operator can be used against IObservable/IObserver. Rx facilitates asynchronous computation by the use of its combinators.

As it name implies, it allows a reactive programming style, using push based IObservables, rather than pull based, imperative style, using IEnumerables. Rx facilitates the composition of asynchronous and event-based computations by the use of its combinators.

Rx version 1.0 is now available. More information about Rx can be found at the Rx MSDN Data Developer Center or on the Rx Forums.

history|show excerpt|excerpt history