Ejemplo n.º 1
0
 public void Track()
 {
     PreviousStat = CurrentStat;
     CurrentStat  = ThreadingStats.ReadCurrent();
     DiffStat     = CurrentStat - PreviousStat;
 }
Ejemplo n.º 2
0
 public void Final()
 {
     PreviousStat = CurrentStat;
     CurrentStat  = ThreadingStats.ReadFinal();
     DiffStat     = CurrentStat - PreviousStat;
 }
Ejemplo n.º 3
0
 public void Start()
 {
     CurrentStat = PreviousStat = ThreadingStats.ReadInitial();
 }