Exemple #1
0
 public PlugOut(DataPipe pipe, Func <TransData> func)
     : base(pipe)
 {
     this.func = func;
 }
Exemple #2
0
 public PlugIn(DataPipe pipe, Func <TransData, bool> func)
     : base(pipe)
 {
     this.func = func;
 }