![]() |
VOOZH | about |
dotnet add package EasyPipeLine --version 4.0.1
NuGet\Install-Package EasyPipeLine -Version 4.0.1
<PackageReference Include="EasyPipeLine" Version="4.0.1" />
<PackageVersion Include="EasyPipeLine" Version="4.0.1" />Directory.Packages.props
<PackageReference Include="EasyPipeLine" />Project file
paket add EasyPipeLine --version 4.0.1
#r "nuget: EasyPipeLine, 4.0.1"
#:package EasyPipeLine@4.0.1
#addin nuget:?package=EasyPipeLine&version=4.0.1Install as a Cake Addin
#tool nuget:?package=EasyPipeLine&version=4.0.1Install as a Cake Tool
If you want to create a pipeline looks like MiddleWares in the Dotnet core you should use the chain of responsibility design pattern. To ease the implementation I have created a Nuget library in order to easily create a pipeline for your application by using the chain of responsibility and builder patterns together.
Find the source code here
Let's say we are going to handle the logic of a coffee shop, the steps are
Therefore you can write something simple like this
var order = new OrderData()
{
Name = "Coffee",
State = "None"
};
await new Pipeline()
.Next(new OrderHandler())
.Next(new CheckoutHandler())
.Next(new ProducingHandler())
.Run(order);
In above scenario the order object will travel through all the handlers starting from the OrderHandler and then CheckoutHandler and so on.
The order object must implement the IPipelineData interface
public class OrderData : IPipelineData
{
public string Name { get; set; }
public string State { get; set; }
}
and every WorkStation must inherit from WorkStation abstract class
public class OrderWorkStation : WorkStation
{
[AutoRetry(attempts: 3)]
protected override async Task InvokeAsync(IPipelineData data)
{
if(!(data is OrderData order)) throw new ArgumentNullException();
order.State = nameof(OrderHandler);
Console.WriteLine($"State:{nameof(OrderHandler)} objectState: " +
$"{JsonConvert.SerializeObject(order)}");
return Task.CompletedTask;
}
}
As it can be seen by defining the AutoRetry attribute you can ask the pipeline to retry this workstation if it fails
Find the nuget here
Find the source code here
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 net5.0 was computed. net5.0-windows net5.0-windows was computed. net6.0 net6.0 was computed. net6.0-android net6.0-android was computed. net6.0-ios net6.0-ios was computed. net6.0-maccatalyst net6.0-maccatalyst was computed. net6.0-macos net6.0-macos was computed. net6.0-tvos net6.0-tvos was computed. net6.0-windows net6.0-windows was computed. net7.0 net7.0 was computed. net7.0-android net7.0-android was computed. net7.0-ios net7.0-ios was computed. net7.0-maccatalyst net7.0-maccatalyst was computed. net7.0-macos net7.0-macos was computed. net7.0-tvos net7.0-tvos was computed. net7.0-windows net7.0-windows was computed. net8.0 net8.0 was computed. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 was computed. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 was computed. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
| .NET Core | netcoreapp3.1 netcoreapp3.1 is compatible. |
This package is not used by any NuGet packages.
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated | |
|---|---|---|---|
| 4.0.1 | 2,148 | 9/1/2020 | |
| 4.0.0 | 1,067 | 8/23/2020 | 4.0.0 is deprecated. |
| 3.2.0 | 771 | 6/20/2020 | |
| 3.1.2 | 1,014 | 6/17/2020 | 3.1.2 is deprecated because it has critical bugs. |
| 3.1.1 | 928 | 6/17/2020 | 3.1.1 is deprecated because it is no longer maintained. |
| 3.1.0 | 929 | 6/17/2020 | 3.1.0 is deprecated because it is no longer maintained. |
| 3.0.0 | 1,088 | 2/19/2020 | 3.0.0 is deprecated because it is no longer maintained. |
| 2.3.0 | 992 | 2/13/2020 | 2.3.0 is deprecated because it is no longer maintained. |
| 2.1.0 | 1,139 | 12/30/2019 | 2.1.0 is deprecated because it is no longer maintained. |
| 2.0.0 | 1,043 | 12/30/2019 | 2.0.0 is deprecated because it is no longer maintained. |
| 1.1.0 | 1,140 | 7/29/2019 | 1.1.0 is deprecated because it is no longer maintained. |
| 1.0.0 | 1,081 | 7/28/2019 | 1.0.0 is deprecated because it is no longer maintained. |