示例#1
0
 public void start()
 {
     if (initOK)
     {
         houseKeepingAgent.Start();
         tcpServer.start();
     }
 }
示例#2
0
        public void startWorker()
        {
            if (initOK)
            {
                tiWorker.Start();

                if (aliveInterval > 1000)
                {
                    aliveAgent.WorkerTimerTick = aliveInterval;
                    aliveAgent.start();
                    houseKeepingAgent.Start();
                }
            }
        }