PipeAndFilter 1.0.4
.NET 6.0
This package targets .NET 6.0. The package is compatible with this framework or higher.
.NET Standard 2.1
This package targets .NET Standard 2.1. The package is compatible with this framework or higher.
dotnet add package PipeAndFilter --version 1.0.4
NuGet\Install-Package PipeAndFilter -Version 1.0.4
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="PipeAndFilter" Version="1.0.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add PipeAndFilter --version 1.0.4
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: PipeAndFilter, 1.0.4"
#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.
// Install PipeAndFilter as a Cake Addin #addin nuget:?package=PipeAndFilter&version=1.0.4 // Install PipeAndFilter as a Cake Tool #tool nuget:?package=PipeAndFilter&version=1.0.4
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Welcome to PipeAndFilter
PipeAndFilter component for .NET Core with flexible conditions for each step (pipe) and the ability to parallel execute tasks over a pipe.
PipeAndFilter was developed in C# with the netstandard2.1, .NET 6 , .NET 7 and .NET 8 target frameworks.
V1.0.4
- Release G.A with .NET8
Features
- Thread safety to obtain/change contract values and/or generic purpose when running a Task (pararel execute)
- Add multiple pipe
- Add multiple Aggregate pipe (for run pararel tasks)
- Set the maximum amount of parallel execution
- Add multiple preconditions to run a pipe or task
- Add multiple link to the pipe to jump to another pipe
- Perform an action with conditions after pipe/aggregatepipe
- Have detailed status (execution date, execution time, type of execution, result of each execution) and number of executions in each pipe
- Save multiple results from each pipe to be used during the another pipe/aggregate pipe run
- Save multiple results in each task to be effective during the aggregation pipe run
- Terminate the PipeAndFilter on any task, condition or pipe
- Simple and clear fluent syntax
Usage
The PipeAndFilter use fluent interface; an object-oriented API whose design relies extensively on method chaining. Its goal is to increase code legibility. The term was coined in 2005 by Eric Evans and Martin Fowler.
Sample-Console Usage (Full features)
await PipeAndFilter.New<MyClass>()
.AddPipe(Pipe1)
.WithGotoCondition(Cond0, "LastPipe")
.WithCondition(Cond1)
.WithCondition(Cond2)
.AfterRunningPipe(ExecPipeAfter)
.WithCondition(CondA1)
.WithGotoCondition(CondA2, "LastPipe")
.AddPipe(Pipe2)
.AfterRunningPipe()
.WithGotoCondition(CondA3, "LastPipe")
.AddPipe(Pipe3)
.AfterRunningAggregatePipe(ExecPipeAfterTask)
.MaxDegreeProcess(8)
.AddTaskCondition(Task50)
.WithCondition(CondTrue)
.AddTask(Task100)
.AddPipe(Pipe4)
.AddAggregatePipe(Pipe5)
.WithCondition(Cond1)
.MaxDegreeProcess(4)
.AddTask(Task50)
.AddTaskCondition(Task100)
.WithCondition(Cond3)
.WithCondition(Cond4)
.AddTask(Task150)
.AddPipe(Pipe6, "LastPipe")
.BuildAndCreate()
.Init(contract)
.CorrelationId(null)
.Logger(null)
.Run();
Sample-api/webUsage
builder.Services
.AddPipeAndFilter(
PipeAndFilter.New<WeatherForecast>()
.AddPipe(TemperatureAdd10)
.Build());
private static Task TemperatureAdd10(EventPipe<WeatherForecast> pipe, CancellationToken token)
{
pipe.ThreadSafeAccess((contract) =>
{
contract.TemperatureC += 10;
});
return Task.CompletedTask;
}
[ApiController]
[Route("[controller]")]
public class WeatherForecastController : ControllerBase
{
private readonly ILogger<WeatherForecastController> _logger;
private readonly IPipeAndFilterService<WeatherForecast> _mypipe;
public WeatherForecastController(ILogger<WeatherForecastController> logger, IPipeAndFilterService<WeatherForecast> pipeAndFilter)
{
_logger = logger;
_mypipes = pipeAndFilter;
}
[HttpGet(Name = "GetWeatherForecast")]
public async Task<WeatherForecast> Get(CancellationToken cancellation)
{
var cid = Guid.NewGuid().ToString();
var pipe = await _mypipes
.Create()
.Logger(_logger)
.CorrelationId(cid)
.Init(new WeatherForecast { Date = DateOnly.FromDateTime(DateTime.Now), Summary = "PipeAndFilter-Opc1", TemperatureC = 0 })
.Run(cancellation);
return pipe.Result.Value!
}
}
Credits
API documentation generated by
License
Copyright 2023 @ Fernando Cerqueira
PipeAndFilter is licensed under the MIT license. See LICENSE.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. 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. |
.NET Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETStandard 2.1
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 8.0.0)
- Microsoft.Extensions.Logging.Abstractions (>= 8.0.0)
- System.Collections.Immutable (>= 8.0.0)
- System.Text.Json (>= 8.0.0)
-
net6.0
-
net7.0
-
net8.0
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.