コード例 #1
0
 public GraphInterpreterSpec(ITestOutputHelper output = null) : base(output)
 {
     _identity  = GraphStages.Identity <int>();
     _detach    = new Detacher <int>();
     _zip       = new Zip <int, string>();
     _broadcast = new Broadcast <int>(2);
     _merge     = new Merge <int>(2);
     _balance   = new Balance <int>(2);
 }
コード例 #2
0
 public GraphInterpreterSpec(ITestOutputHelper output = null) : base(output)
 {
     _identity = GraphStages.Identity<int>();
     _detach = new Detacher<int>();
     _zip = new Zip<int, string>();
     _broadcast = new Broadcast<int>(2);
     _merge = new Merge<int>(2);
     _balance = new Balance<int>(2);
 }