RtFlow.Pipelines.Core
1.9.0
dotnet add package RtFlow.Pipelines.Core --version 1.9.0
NuGet\Install-Package RtFlow.Pipelines.Core -Version 1.9.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="RtFlow.Pipelines.Core" Version="1.9.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="RtFlow.Pipelines.Core" Version="1.9.0" />
<PackageReference Include="RtFlow.Pipelines.Core" />
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 RtFlow.Pipelines.Core --version 1.9.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: RtFlow.Pipelines.Core, 1.9.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.
#addin nuget:?package=RtFlow.Pipelines.Core&version=1.9.0
#tool nuget:?package=RtFlow.Pipelines.Core&version=1.9.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
RtFlow.Pipelines.Core
High-performance, fluent data processing pipelines for .NET 🚀
Build complex data processing workflows with an intuitive, chainable syntax using .NET's TPL Dataflow library. Perfect for ETL operations, real-time data processing, message handling, and high-throughput scenarios.
✨ Key Features
- 🔗 Fluent API - Intuitive, chainable syntax for complex workflows
- ⚡ High Performance - Built on TPL Dataflow with back-pressure control
- 🛡️ Type-safe - Strongly-typed pipeline stages with compile-time checking
- 🚫 Cancellation Support - Graceful shutdown with comprehensive cancellation
- 📦 Batching - Efficient bulk processing with configurable batching
- 🏗️ Pipeline Hub - Centralized pipeline management and sharing
- 🔍 Observability - Built-in monitoring and side-effect operations
📦 Installation
dotnet add package RtFlow.Pipelines.Core
🚀 Quick Start
using RtFlow.Pipelines.Core;
// Create a simple data processing pipeline
var pipeline = FluentPipeline
.Create<int>()
.Transform(x => x * 2) // Double each number
.Filter(x => x > 10) // Keep only numbers > 10
.Batch(5) // Group into batches of 5
.ToSink(batch => { // Process each batch
Console.WriteLine($"Batch: [{string.Join(", ", batch)}]");
});
// Process data through the pipeline
foreach (var number in Enumerable.Range(1, 20))
{
await pipeline.SendAsync(number);
}
pipeline.Complete();
await pipeline.Completion;
// Output: Batch: [12, 14, 16, 18, 20], Batch: [22, 24, 26, 28, 30], etc.
💡 Common Use Cases
- ETL Pipelines - Extract, transform, and load data workflows
- Message Processing - Handle high-volume message streams
- File Processing - Process large files with batching and parallelism
- Real-time Analytics - Stream processing with aggregation
- API Data Processing - Transform and validate API request/response data
📚 Complete Documentation
For comprehensive documentation, advanced examples, and best practices:
📄 License
RtFlow.Pipelines is released under the MIT License. See the LICENSE file for details.
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 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.
-
net8.0
- System.Threading.Tasks.Dataflow (>= 9.0.5)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.