Pipelinez 1.3.0

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

Pipelinez

Typed, observable record-processing pipelines for .NET.

Pipelinez is the core runtime package for building source → segment → destination pipelines inside normal .NET applications. Use it when you need to ingest, enrich, transform, route, or publish records with consistent lifecycle management, retries, dead-lettering, flow control, and observability.

What This Package Does

Pipelinez provides:

  • typed records
  • sources, segments, and destinations
  • async startup and completion
  • fault handling and error policies
  • retry
  • dead-lettering
  • flow control
  • distributed execution abstractions
  • performance and operational tooling

Install

dotnet add package Pipelinez

When To Use This Package

Use Pipelinez when your application needs a typed pipeline runtime around record-processing logic and you do not want to hand-wire TPL Dataflow blocks, retry behavior, dead-letter handling, backpressure, metrics, and health reporting for every pipeline.

Minimal Example

using Pipelinez.Core;
using Pipelinez.Core.Record;

public sealed class OrderRecord : PipelineRecord
{
    public required string Id { get; init; }
}

var pipeline = Pipeline<OrderRecord>.New("orders")
    .WithInMemorySource(new object())
    .WithInMemoryDestination("in-memory")
    .Build();

await pipeline.StartPipelineAsync();
await pipeline.PublishAsync(new OrderRecord { Id = "A-100" });
await pipeline.CompleteAsync();
await pipeline.Completion;

Common Recipes

  • Build an in-memory pipeline with typed records.
  • Add retry policies before terminal error handling.
  • Dead-letter permanently failed records.
  • Expose pipeline health, metrics, and performance snapshots.

Documentation

Product 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 was computed.  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 (6)

Showing the top 5 NuGet packages that depend on Pipelinez:

Package Downloads
Pipelinez.Kafka

Kafka transport extensions for Pipelinez with Kafka sources, destinations, dead-letter topics, distributed workers, and partition-aware stream processing.

Pipelinez.PostgreSql

PostgreSQL destination and dead-letter extensions for Pipelinez with consumer-owned schema mapping, custom SQL, and Dapper-backed database writes.

Pipelinez.AzureServiceBus

Azure Service Bus transport extensions for Pipelinez with queue and topic subscription sources, destinations, dead-letter publishing, and competing-consumer workers.

Pipelinez.RabbitMQ

RabbitMQ transport extensions for Pipelinez with queue sources, exchange destinations, dead-letter publishing, and competing-consumer workers.

Pipelinez.AmazonS3

Amazon S3 transport extensions for Pipelinez with object enumeration sources, object destinations, and dead-letter artifact publishing.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.3.0 199 4/17/2026
1.2.0 157 4/15/2026
1.1.0 132 4/10/2026
1.0.0 127 4/7/2026