Installation
System Requirements
- .NET 8.0 or .NET 10.0
Using .NET CLI
bash
dotnet add package Apq.ChangeBubblingUsing PackageReference
Add to your .csproj file:
xml
<PackageReference Include="Apq.ChangeBubbling" Version="1.0.*" />Using NuGet Package Manager
In Visual Studio:
- Right-click on project
- Select "Manage NuGet Packages"
- Search for "Apq.ChangeBubbling"
- Click Install
Dependencies
Apq.ChangeBubbling depends on:
- System.Reactive (for Rx streams)
- System.Threading.Tasks.Dataflow (for backpressure pipeline)
Verify Installation
csharp
using Apq.ChangeBubbling.Nodes;
var node = new ListBubblingNode<string>("Test");
node.Add("Hello");
Console.WriteLine($"Count: {node.Count}"); // Output: Count: 1Next Steps
- Quick Start - Get started quickly
- Node Types - Learn about node types