Skip to content
Marty Mathis edited this page Jan 20, 2019 · 17 revisions

A cross-platform library supporting .NET 4.6 and netstandard2.0, PipelineFramework allows you to construct complex linear workflows out a set of components you create.

Concepts

Component Resolution

Pipelines are constructed using a set of components that are resolved using implementations of the following interface:

    public interface IPipelineComponentResolver
    {
        T GetInstance<T>(string name) where T : IPipelineComponent;
    }

Configuration Settings

Control Flow

Exception Handling

Clone this wiki locally