dotnet/reactive

The Reactive Extensions for .NET

View on GitHub ↗Jump to charts ↓Open shareable report

Summary Information

Updated 22 minutes ago
Added to GitGenius on September 9th, 2026
Created on September 3rd, 2013
Open Issues & Pull Requests: 180 (+0)
GitHub issues: Enabled
Number of forks: 798
Total Stargazers: 7,189 (+0)
Total Subscribers: 264 (+0)

Repository Insights (GitGenius)

Median issue/PR response: 17.6 hours
Mean response time: 37.7 days
90th percentile: 160.8 days
Tracked items: 61

How this project is maintained

Around half of the issues opened in the past year never receive a reply. 58% of open issues come from outside the core team, a mix of external reports and the maintainers' own roadmap. Work labelled "[area] Ix" is answered fastest, typically in about 4 hours, while "[area] Rx" waits about 33 hours. Only 6% of issues opened in the past year have been closed. Three people close 78% of everything that gets resolved.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 38
New in 7 days: 1
Closed in 7 days: 0
Avg open age: 723 days
Stale 30+ days: 36
Stale 90+ days: 34

Recent activity

Opened in 7 days: 1
Closed in 7 days: 0
Comments in 7 days: 0
Events in 7 days: 0

Top labels

  • [area] Rx (45)
  • [area] Ix (24)
  • [area] AsyncRx (6)
  • bug (3)
  • documentation (3)
  • feature request (2)
  • System.Linq.Async deprecation (1)

Detailed Description

Reactive Extensions for .NET is a library for event-driven programming with a composable, declarative model based on LINQ over sequences.

The library addresses the challenge of writing code that responds reliably to events and live data streams. It provides a set of operators and abstractions that let developers compose event handlers declaratively rather than through imperative callback chains. The core Rx.NET library works with observable sequences, while companion libraries extend this model: AsyncRx.NET adds deeper async/await support through IAsyncObservable, Interactive Extensions provides additional LINQ operators for IAsyncEnumerable and IEnumerable, and System.Linq.Async implements standard LINQ operators for asynchronous enumerable sequences.

Developers should choose this tool when building event-driven systems, particularly cloud-native applications that process live data streams such as IoT or real-time analytics. The library suits scenarios where multiple asynchronous operations need to be coordinated and transformed declaratively. The project provides a free introductory book covering the abstractions and functionality of Rx.NET, which serves as a learning resource for understanding when and how to apply reactive patterns.

The project maintains active development across its four related libraries with regular updates to support current .NET versions and cloud-native use cases. Development includes ongoing refinement of the core Rx.NET library alongside experimental work on AsyncRx.NET to deepen async/await integration. The maintainers actively document the libraries through comprehensive guides and examples, indicating sustained investment in developer education alongside code maintenance.