Esempio n. 1
0
 static void ReadyBroadcast(AsyncMsgInfoBase info, bool bAsync)
 {
     if (info != null)
     {
         if (bAsync)
         {
             m_eventTypeAsyncList.Add(info);
         }
         else
         {
             info.Excute();
             RemoveMsgInfo(info);
         }
     }
 }