Exemplo n.º 1
0
 public void PerformaceUpdate(PerformanceUpdateMessage message)
 {
     foreach (KeyValuePair <string, RCProcess.SPerformance> keyValuePair in message.Performance)
     {
         RCProcess rcprocess = this._processCollection[keyValuePair.Key];
         if (rcprocess != null)
         {
             rcprocess.UpdatePerformance(keyValuePair.Value.PrivateMemorySize, keyValuePair.Value.VirtualMemorySize, keyValuePair.Value.CPU);
         }
     }
 }