public override Task PropertyExecution(QueryContext <IPipeline> args, List <IProcessor> property) { var result = PredefinedPipeline.FromProcessors(property); args.SetResultWithInformation(result, "Pipeline is created."); return(Done); }
public PipelineParser() : base( PredefinedPipeline.FromProcessors < CheckXmlElementExistence, TryGetProcessorsFromTheXmlRootElement, CreatePipeline >()) { }
public ChainedBinaryTreeParser(IEnumerable <BinaryTreeParseAction> actions) : base(PredefinedPipeline.FromProcessors(actions)) { ResultAnalyzer = new QueryResultAnalyzer <Tree>(); }
public TreeSerializer(IEnumerable <IProcessor> actions) : base(PredefinedPipeline.FromProcessors(actions)) { }