Skip to content

AlienEngineer/Pipeline

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Pipeline

C# implementation of a generic pipeline.

// setup
var setup = Config
  .Stage(new ParseFromString())
  .Stage(new DivideByPI())
  .Stage(new Format());
  
// create
var pipeline = Pipeline.Create<String>(setup);

// execute
pipeline.Run(new String[] { "1", "2", "3", "4" });
// or
pipeline.RunAsync(new String[] { "1", "2", "3", "4" });

About

C# implementation of a generic pipeline.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published