Exemplo n.º 1
0
 /// <summary>
 ///
 /// </summary>
 private void ReadCCInterBus()
 {
     while (threadFlag.Flag)
     {
         string response = ccInter.GetRequest(CORENAME);
         if (response != "EMPTY")
         {
             int value = cache.ReadCacheValue(response);
             ccInter.ResponseRequest(CORENAME, value);
             cache.ActionBusMiss(response);
         }
     }
 }