Rambla.Wpf 0.6.0

dotnet add package Rambla.Wpf --version 0.6.0
                    
NuGet\Install-Package Rambla.Wpf -Version 0.6.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Rambla.Wpf" Version="0.6.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Rambla.Wpf" Version="0.6.0" />
                    
Directory.Packages.props
<PackageReference Include="Rambla.Wpf" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Rambla.Wpf --version 0.6.0
                    
#r "nuget: Rambla.Wpf, 0.6.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Rambla.Wpf@0.6.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Rambla.Wpf&version=0.6.0
                    
Install as a Cake Addin
#tool nuget:?package=Rambla.Wpf&version=0.6.0
                    
Install as a Cake Tool

Rambla.Wpf

WPF dispatcher adapter for Rambla — high-frequency observable state for real-time .NET desktop apps.

Rambla's core is framework-agnostic and never references Dispatcher. This package supplies the IStateScheduler that marshals coalesced state flushes onto the WPF UI thread, at Background priority so high-frequency state never starves input or rendering.

Usage

Install both packages, then install the scheduler once at startup on the UI thread:

// App.xaml.cs
using Rambla.Wpf;

public partial class App : Application
{
    protected override void OnStartup(StartupEventArgs e)
    {
        base.OnStartup(e);

        // Every RamblaState created without an explicit scheduler now flushes
        // onto the WPF dispatcher.
        DispatcherStateScheduler.InstallAsDefault();
    }
}

Your RamblaState-derived view models then update from any thread and bind exactly like any INotifyPropertyChanged object — Rambla coalesces the background writes into a few UI notifications per second.

Capping the refresh rate

InstallAsDefault posts a flush as fast as the dispatcher drains its queue. To bound it, install the throttled variant instead — it wraps the adapter in the core's ThrottlingStateScheduler:

// 60 flushes/second at most; omit the argument to use RamblaOptions.MaxRefreshRate.
_scheduler = DispatcherStateScheduler.InstallThrottledAsDefault(60);

It owns a timer, so keep the returned instance and dispose it on exit (after the background writers stop).

Released under the MIT License.

Product Compatible and additional computed target framework versions.
.NET net10.0-windows7.0 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net10.0-windows7.0

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.6.0 76 9/7/2026
0.5.2 111 7/30/2026
0.5.1 98 7/28/2026
0.5.0 101 7/28/2026
0.4.1 105 7/23/2026
0.4.0 104 7/21/2026
0.3.1 102 7/21/2026
0.3.0 98 7/21/2026
0.2.0 117 7/20/2026
0.1.0 105 7/20/2026