The Reactive Extensions for .NET
|
|
9 years ago | |
|---|---|---|
| Ix.NET | 9 years ago | |
| Rx.NET | 9 years ago | |
| .gitattributes | 12 years ago | |
| .gitignore | 9 years ago | |
| AUTHORS.txt | 10 years ago | |
| GitVersion.yml | 9 years ago | |
| README.md | 9 years ago | |
| build.ps1 | 9 years ago |
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 | Mutiple 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.gitSome 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.
This project is part of the .NET Foundation along with other projects like the class libraries for .NET Core.