The Reactive Extensions for .NET
|
%!s(int64=7) %!d(string=hai) anos | |
---|---|---|
AsyncRx.NET | %!s(int64=8) %!d(string=hai) anos | |
Ix.NET | %!s(int64=7) %!d(string=hai) anos | |
Rx.NET | %!s(int64=7) %!d(string=hai) anos | |
scripts | %!s(int64=8) %!d(string=hai) anos | |
.editorconfig | %!s(int64=8) %!d(string=hai) anos | |
.gitattributes | %!s(int64=12) %!d(string=hai) anos | |
.gitignore | %!s(int64=7) %!d(string=hai) anos | |
.vsts.rx-ci.yml | %!s(int64=7) %!d(string=hai) anos | |
.vsts.rx-pr.yml | %!s(int64=7) %!d(string=hai) anos | |
AUTHORS.txt | %!s(int64=8) %!d(string=hai) anos | |
GitVersion.yml | %!s(int64=8) %!d(string=hai) anos | |
LICENSE | %!s(int64=9) %!d(string=hai) anos | |
NuGet.Config | %!s(int64=9) %!d(string=hai) anos | |
README.md | %!s(int64=7) %!d(string=hai) anos | |
build.ps1 | %!s(int64=8) %!d(string=hai) anos |
Channel | Rx | Ix |
---|---|---|
VSTS | ||
NuGet.org | ||
MyGet (gallery) |
Catch us in the #rxnet channel over at http://reactiveui.net/slack
https://dotnet.myget.org/F/rx/api/v3/index.json
Due to the overwhelming pain that fixing #205 - Implement assembly version strategy caused, we have refactored the libraries into a single library System.Reactive
. To prevent breaking existing code that references the v3 libraries, we have facades with TypeForwarders to the new assembly. If you have a reference to a binary built against v3.0, then use the new System.Reactive.Compatibility
package.
Rx 4.0 supports the following platforms
Notably, Windows 8, Windows Phone 8 and legacy PCL libraries are no longer supported.
The NuGet packages have changed their package naming in the move from v2.x.x to v3.0.0
Rx-Main
System.Reactive
Rx-Core
System.Reactive.Core
Rx-Interfaces
System.Reactive.Interfaces
Rx-Linq
System.Reactive.Linq
Rx-PlatformServices
System.Reactive.PlatformServices
Rx-Testing
Microsoft.Reactive.Testing
This brings the NuGet package naming in line with NuGet guidelines and also the dominant namespace in each package. The strong name key has also changed, which is considered a breaking change. However, there are no expected API changes, therefore, once you make the NuGet change, no code changes should be necessary.
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 extension methods. Thus you can filter, project, aggregate, compose and perform time-based operations on multiple events easily by using these standard 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.
Rx complements and interoperates smoothly with both synchronous data streams (IEnumerable<T>
) and single-value asynchronous computations (Task<T>
) as the following diagram shows:
Single return value | Multiple return values | |
---|---|---|
Pull/Synchronous/Interactive | T | IEnumerable<T> |
Push/Asynchronous/Reactive | Task<T> | IObservable<T> |
Additional documentation, video, tutorials and HOL are available on MSDN.
git clone https://github.com/Reactive-Extensions/Rx.NET.git
Some of the best ways to contribute are to try things out, file bugs, and join in design conversations.
Looking for something to work on? The list of up for grabs issues is a great place to start.
This project has adopted a code of conduct adapted from the Contributor Covenant to clarify expected behavior in our community. This code of conduct has been adopted by many other projects. For more information see the Code of conduct.
System.Reactive is part of the .NET Foundation. Other projects that are associated with the foundation include the Microsoft .NET Compiler Platform ("Roslyn") as well as the Microsoft ASP.NET family of projects, Microsoft .NET Core & Xamarin Forms.
![]() Geoffrey Huntley Sydney, Australia |
![]() Oren Novotny New York, USA |
The core team members, System.Reactive contributors and contributors in the ecosystem do this open source work in their free time. If you use System.Reactive for serious tasks, and you'd like us to invest more time on it, please donate. This project increases your income/productivity too. It makes development and applications faster and it reduces the required bandwidth.
This is how we use the donations:
Become a backer and get your image on our README on Github with a link to your site.
Become a sponsor and get your logo on our README on Github with a link to your site.