KoreForge.Processing 0.0.2-alpha

This is a prerelease version of KoreForge.Processing.
dotnet add package KoreForge.Processing --version 0.0.2-alpha
                    
NuGet\Install-Package KoreForge.Processing -Version 0.0.2-alpha
                    
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="KoreForge.Processing" Version="0.0.2-alpha" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="KoreForge.Processing" Version="0.0.2-alpha" />
                    
Directory.Packages.props
<PackageReference Include="KoreForge.Processing" />
                    
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 KoreForge.Processing --version 0.0.2-alpha
                    
#r "nuget: KoreForge.Processing, 0.0.2-alpha"
                    
#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 KoreForge.Processing@0.0.2-alpha
                    
#: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=KoreForge.Processing&version=0.0.2-alpha&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=KoreForge.Processing&version=0.0.2-alpha&prerelease
                    
Install as a Cake Tool

KoreForge.Processing

Composable processing pipelines with batch execution, flow orchestration, and persistence support.

Overview

KoreForge.Processing provides:

  • Processing Pipelines — composable, type-safe pipelines for per-record and batch processing with parallel execution support
  • Pipeline Abstractions — core interfaces (IBatchPipelineExecutor, IPipelineBuilder, IProcessingPipeline, PipelineContext)
  • Flow Abstractions — state-machine workflow orchestration with branching and transitions
  • Flush Coordination — policy-based dirty-tracking and flush coordination for persistence scenarios
  • Instrumentation — built-in metrics hooks via IPipelineMetrics, IPipelineBatchScope, IPipelineStepScope
  • Commands — pipeline command pattern abstraction

Installation

<PackageReference Include="KoreForge.Processing" Version="x.y.z" />

Quick Start

using KoreForge.Processing.Pipelines;

// Build a pipeline
var pipeline = PipelineBuilder.Create<string>()
    .UseStep(new MyTransformStep())
    .Build();

// Execute over a batch
var executor = new BatchPipelineExecutor<string, MyOutput>("my-pipeline");
await executor.ProcessBatchAsync(records, pipeline, context, options, ct);

Solution Structure

Folder Assembly Purpose
src/KF.Processing.Flow.Abstractions KF.Processing.Flow.Abstractions Core flow interfaces
src/KF.Processing.Flow KF.Processing.Flow Flow implementation + pipeline adapter
src/KF.Processing.Pipeline.Abstractions KF.Processing.Pipeline.Abstractions Core pipeline interfaces
src/KF.Processing.Pipeline KF.Processing.Pipeline Pipeline implementation
src/KF.Processing.Pipelines KF.Processing.Pipelines Commands, Instrumentation, Persistence
src/KF.Processing (bundler) Packages all of the above as KoreForge.Processing

License

MIT — see LICENSE.md.

Product Compatible and additional computed target framework versions.
.NET 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on KoreForge.Processing:

Package Downloads
KoreForge.Kafka

Consolidated Kafka client components (AdminClient, Configuration, Consumer, Core, Producer) shipped as one package.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.0.2-alpha 30 3/16/2026