예제 #1
0
 internal PipelineEmitAction(PipelineEmitAction template, String name, Regex regex)
     : base(template, name, regex)
 {
     this.eventKey    = optReplace(regex, name, template.eventKey);
     this.recField    = optReplace(regex, name, template.recField);
     this.destination = template.destination;
     this.maxLevel    = template.maxLevel;
 }
예제 #2
0
 public PipelineEmitTemplate(Pipeline pipeline, XmlNode node)
     : base(pipeline, node)
 {
     template = new PipelineEmitAction(pipeline, node);
 }