-
Notifications
You must be signed in to change notification settings - Fork 7
Home
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.
Pipelines are constructed using a set of components that are resolved using implementations of the following interface:
public interface IPipelineComponentResolver
{
/// <summary>
///
/// </summary>
/// <param name="name"></param>
/// <returns></returns>
T GetInstance<T>(string name) where T : IPipelineComponent;
}