Skip to content

A library for creating reusable pipelines of operations that can be executed as a whole.

License

Notifications You must be signed in to change notification settings

Emcrank/Pipeliner.Net

Repository files navigation

Pipeliner.Net

Continous Integration

Release

A library for creating reusable pipelines of operations that can be executed as a whole.

var pipeline = new OperationPipeline<string, int>(logger)
    .AddOperation<string, int>(Convert.ToInt32)
    .AddOperation<int, int>(param => param + 5);

int result = await pipeline.RunAsync("50");

Console.WriteLine(result);

// Prints 55

About

A library for creating reusable pipelines of operations that can be executed as a whole.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages