System.Reactive 6.0.1

Rx (Reactive Extensions for .NET)

Rx enables event-driven programming with a composable, declarative model.

Getting started

Run the following at a command line:

mkdir TryRx
cd TryRx
dotnet new console
dotnet add package System.Reactive

Alternatively, if you have Visual Studio installed, create a new .NET Console project, and then use the NuGet package manager to add a reference to System.Reactive.

You can then add this code to your Program.cs. This creates an observable source (ticks) that produces an event once every second. It also adds a handler to that source that writes a message to the console for each event:

using System.Reactive.Linq;

IObservable<long> ticks = Observable.Timer(
    dueTime: TimeSpan.Zero,
    period: TimeSpan.FromSeconds(1));

ticks.Subscribe(
    tick => Console.WriteLine($"Tick {tick}"));

Console.ReadLine();

Examples

Wrapping an existing event source as an Rx IObservable<T>

If you have an existing source of events that does not support Rx directly, but which does offer .NET events, you can bring this into the world of Rx using the Observable.FromEventPattern method:

using System.Reactive.Linq;

FileSystemWatcher fsw = new FileSystemWatcher(@"C:\temp");

IObservable<FileSystemEventArgs> changeEvents = Observable
    .FromEventPattern<FileSystemEventHandler, FileSystemEventArgs>(
        h => fsw.Changed += h,
        h => fsw.Changed -= h)
    .Select(e => e.EventArgs);

fsw.EnableRaisingEvents = true;

Waiting for inactivity

It can sometimes be useful to wait for a period of inactivity before taking action. For example, if you have code that monitors a directory in a filesystem, processing modified or added files, it's common for there to be flurries of activity. For example, if a user is copying multiple files into a folder that you're observing, there will be multiple changes, and it could be more efficient to wait until those stop and then process all the changes in one batch, than to attempt to process everything immediately.

This example defines a custom Rx operator that can be attached to any source. It will wait for that source to start producing events, and then, it will wait for it to stop again for the specified period. Each time that happens, it reports all of the activity that occurred between the last two periods of inactivity:

static class RxExt
{
    public static IObservable<IList<T>> Quiescent<T>(
        this IObservable<T> src,
        TimeSpan minimumInactivityPeriod,
        IScheduler scheduler)
    {
        IObservable<int> onoffs =
            from _ in src
            from delta in Observable.Return(1, scheduler).Concat(Observable.Return(-1, scheduler).Delay(minimumInactivityPeriod, scheduler))
            select delta;
        IObservable<int> outstanding = onoffs.Scan(0, (total, delta) => total + delta);
        IObservable<int> zeroCrossings = outstanding.Where(total => total == 0);
        return src.Buffer(zeroCrossings);
    }
}

(This works by creating a sequence (onoffs) that produces a value 1 each time activity occurs, and then a corresponding -1 after the specified time has elapsed. It then uses Scan to produce the outstanding sequence, which is just a running total of those onoffs. This is effectively a count of the number of events that have happened recently (where 'recently' is defined as 'less than minimumInactivityPeriod ago). Every new event that occurs raises this running total by 1, but each time the specified timespan has passed for a particular event, it drops by one. So when this drops back to 0, it means that there are no events that have occurred as recently as the minimumInactivityPeriod. The zeroCrossings sequence picks out just the events in which outstanding drops back to zero. This has the effect that zeroCrossings raises an event every time there has been some activity followed by minimumInactivityPeriod of inactivity. Finally, we plug this into the Buffer operator, which slices the input events (src) into chunks. By passing it the zeroCrossings source, we tell Buffer to deliver a new slice every time the source becomes inactive. The effect is that the source returned by Quiescent does nothing until there has been some activity followed by the specified period of inactivity, at which point it produces a single event reporting all of the source events that have occurred since the previous period, or in the initial case, all of the source events so far.)

You could use this in conjunction with the adapted FileSystemWatcher from the preceding example:

IObservable<IList<FileSystemEventArgs>> fileActivityStopped = changeEvents
    .Quiescent(TimeSpan.FromSeconds(2), Scheduler.Default);

await fileActivityStopped.ForEachAsync(
    a => Console.WriteLine($"File changes stopped after {a.Count} changes"));

(Note: this only uses the Changed event. A real application might also need to look at the FileSystemWatcher's Created, Renamed, and Deleted events.)

Feedback

You can create issues at the https://github.com/dotnet/reactive repository

Showing the top 20 packages that depend on System.Reactive.

Packages Downloads
GraphQL.Client
A GraphQL Client for .NET Standard
275
System.Reactive.Core
Reactive Extensions (Rx) for .NET - v3 compatibility facade for
74
System.Reactive.Core
Reactive Extensions (Rx) for .NET - v3 compatibility facade for
78
System.Reactive.Interfaces
Reactive Extensions (Rx) for .NET - v3 compatibility facade for
73
System.Reactive.Interfaces
Reactive Extensions (Rx) for .NET - v3 compatibility facade for
74
System.Reactive.Interfaces
Reactive Extensions (Rx) for .NET - v3 compatibility facade for
81
System.Reactive.Interfaces
Reactive Extensions (Rx) for .NET - v3 compatibility facade for
82
System.Reactive.Interfaces
Reactive Extensions (Rx) for .NET - v3 compatibility facade for
87
System.Reactive.Interfaces
Reactive Extensions (Rx) for .NET - v3 compatibility facade for
92
System.Reactive.Linq
Legacy facade for Reactive Extensions (Rx) for .NET
75
System.Reactive.Linq
Reactive Extensions (Rx) for .NET - v3 compatibility facade for
72
System.Reactive.Linq
Reactive Extensions (Rx) for .NET - v3 compatibility facade for
73
System.Reactive.Linq
Reactive Extensions (Rx) for .NET - v3 compatibility facade for
75
System.Reactive.Linq
Reactive Extensions (Rx) for .NET - v3 compatibility facade for
79
System.Reactive.PlatformServices
Reactive Extensions (Rx) for .NET - v3 compatibility facade for
81
System.Reactive.PlatformServices
Reactive Extensions (Rx) for .NET - v3 compatibility facade for
86
System.Reactive.WindowsRuntime
Reactive Extensions (Rx) for .NET - v3 compatibility facade for
68
System.Reactive.WindowsRuntime
Reactive Extensions (Rx) for .NET - v3 compatibility facade for
69
System.Reactive.Windows.Threading
Reactive Extensions (Rx) for .NET - v3 compatibility facade for
72

.NET Framework 4.7.2

.NET 6.0

  • No dependencies.

.NET 6.0

  • No dependencies.

.NET Standard 2.0

UAP 10.0.18362

Version Downloads Last updated
6.0.1 4 05/24/2024
6.0.1-preview.1 18 06/19/2023
6.0.0 27 05/20/2023
6.0.0-preview.16 27 06/26/2023
6.0.0-preview.13 29 04/30/2023
6.0.0-preview.9 55 04/07/2023
6.0.0-preview.1 26 03/29/2023
5.0.0 122 11/25/2022
5.0.0-preview.220 35 01/18/2023
5.0.0-preview.16 36 01/16/2023
4.4.1 64 01/18/2023
4.3.2 50 01/18/2023
4.3.1 14 01/18/2023
4.2.2 18 01/18/2023
4.2.0 23 01/18/2023
4.2.0-preview.625 46 01/18/2023
4.2.0-preview.566 40 01/18/2023
4.2.0-preview.102 41 01/18/2023
4.2.0-preview.63 79 01/18/2023
4.1.6 41 01/18/2023
4.1.5 76 01/18/2023
4.1.4 64 01/16/2023
4.1.3 72 01/18/2023
4.1.2 32 01/18/2023
4.1.1 36 01/18/2023
4.1.0 38 01/17/2023
4.1.0-preview.330 63 01/18/2023
4.1.0-preview.84 80 01/18/2023
4.0.0 81 01/18/2023
4.0.0-preview.4.build.391 73 01/16/2023
4.0.0-preview.3.build.380 13 01/18/2023
4.0.0-preview.2.build.379 22 01/18/2023
3.1.1 49 01/18/2023
3.1.0 40 01/18/2023
3.1.0-rc 84 01/18/2023
3.0.0 51 01/18/2023