FluxFlow.Components.Control
0.3.0-alpha.1
dotnet add package FluxFlow.Components.Control --version 0.3.0-alpha.1
NuGet\Install-Package FluxFlow.Components.Control -Version 0.3.0-alpha.1
<PackageReference Include="FluxFlow.Components.Control" Version="0.3.0-alpha.1" />
<PackageVersion Include="FluxFlow.Components.Control" Version="0.3.0-alpha.1" />
<PackageReference Include="FluxFlow.Components.Control" />
paket add FluxFlow.Components.Control --version 0.3.0-alpha.1
#r "nuget: FluxFlow.Components.Control, 0.3.0-alpha.1"
#:package FluxFlow.Components.Control@0.3.0-alpha.1
#addin nuget:?package=FluxFlow.Components.Control&version=0.3.0-alpha.1&prerelease
#tool nuget:?package=FluxFlow.Components.Control&version=0.3.0-alpha.1&prerelease
FluxFlow.Components.Control
Reusable expression-driven control components for FluxFlow.
Nodes
| Node type | Shape | Purpose |
|---|---|---|
flow.filter |
Input → Output |
Emits only input values that match an expression. |
flow.when |
Input → WhenTrue / WhenFalse |
Routes each input value by expression result. |
The package does not choose an expression language. Applications provide one or
more IFlowExpressionEngine implementations during registration.
var registry = new RuntimeNodeFactoryRegistry()
.RegisterControlComponents(options => options
.UseExpressionEngine(appExpressionEngine)
.RegisterType<AppMessage>("app.message")
.UseContextFactory(new AppMessageContextFactory()));
Basic configuration:
{
"type": "flow.when",
"inputType": "object",
"engine": "my-engine",
"expressionId": "route-v1",
"expressionName": "route-important",
"expression": "..."
}
inputType defaults to object. Register type aliases when a control node
needs to connect to typed ports. Omit engine to use the default expression
engine configured by the host.
Expression evaluation failures emit FlowError and the node continues
processing later messages. Nodes emit diagnostics with input type, engine,
expression id, expression name, and route metadata where available.
Composition Guidance
Use this package as one part of a host-composed graph. See Component Composition for recommended host boundaries, package boundaries, and extraction timing.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net10.0
- FluxFlow.Components.Expressions (>= 0.1.0-alpha.1)
- FluxFlow.Engine (>= 1.0.0)
-
net8.0
- FluxFlow.Components.Expressions (>= 0.1.0-alpha.1)
- FluxFlow.Engine (>= 1.0.0)
- System.Threading.Tasks.Dataflow (>= 9.0.4)
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.3.0-alpha.1 | 42 | 6/2/2026 |
| 0.2.1-alpha.1 | 42 | 6/2/2026 |
| 0.2.0-alpha.1 | 71 | 6/1/2026 |
| 0.1.0-alpha.1 | 83 | 6/1/2026 |
Uses shared component expression registration helpers while preserving the public Control registration API.