Exemple #1
0
        } /* RunLogAddMsg */

        private void  RunLogMsgQueueFlush()
        {
            String msg = runLogMsgQueue.GetNextMsg();

            while (msg != null)
            {
                RunLog.AppendText(msg);
                msg = runLogMsgQueue.GetNextMsg();
            }
        } /* RunLogMsgQueueFlush */
        } /* RunLogAddMsg */

        private void  RunLogMsgQueueFlush()
        {
            String msg = runLogMsgQueue.GetNextMsg();

            while (msg != null)
            {
                RunLog.AppendText(msg + "\n");
                backGroundLog.Writeln(msg);
                msg = runLogMsgQueue.GetNextMsg();
            }
        } /* RunLogMsgQueueFlush */
 private void  RunLogMsgQueueFlush()
 {
     if (msgQueue != null)
     {
         String m = msgQueue.GetNextMsg();
         while (m != null)
         {
             RunLog.AppendText(m);
             m = msgQueue.GetNextMsg();
         }
     }
 } /* RunLogMsgQueueFlush */
        } /* RunLogAddMsg */

        private void  RunLogMsgQueueFlush()
        {
            runLogGoalie.StartBlock();
            if (runLogMsgQueue != null)
            {
                while (runLogMsgQueue.Count > 0)
                {
                    String msg = runLogMsgQueue.Dequeue();
                    RunLog.AppendText(msg);
                }
            }

            runLogGoalie.EndBlock();
        } /* RunLogMsgQueueFlush */