Ejemplo n.º 1
0
 /// <summary>
 /// Creates a new FairMergePipe based on the given Pipes.
 /// </summary>
 public FairMergePipe(params IPipe[] Pipes)
 {
     this._Pipes = Pipes;
     this.total  = Pipes.Count();
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Creates a new ExhaustiveMergePipe based on the given Pipes.
 /// </summary>
 public ExhaustiveMergePipe(params IPipe[] Pipes)
 {
     this._Pipes = Pipes;
     this.total  = Pipes.Count();
 }