コード例 #1
0
 // Send round-robin to destinations to try and get better network utilization
 public override void OnNotify(IterationIn <Epoch> time)
 {
     if (time.iteration < this.Iterations)
     {
         this.NotifyAt(new IterationIn <Epoch>(time.outerTime, time.iteration + 1));
     }
 }
コード例 #2
0
ファイル: Iteration.cs プロジェクト: omidm/naiad
 public override void OnNotify(IterationIn <T> time)
 {
     // nothing to do here
 }
コード例 #3
0
ファイル: Iteration.cs プロジェクト: sherryshare/Naiad
 public override void OnDone(IterationIn <T> time)
 {
     // nothing to do here
 }