コード例 #1
0
        public bool showdown()
        {
            executor.stop();
            deleteData();

            return(true);
        }
コード例 #2
0
ファイル: LiXianBaiTanManager.cs プロジェクト: chenchungit/ky
        public bool showdown()
        {
#if !UseTimer
            _PeriodicTaskHandle.cannel();
            _ScheduleExecutor.stop();
#else
            ScheduleExecutor2.Instance.scheduleCancle(this);
#endif
            return(true);
        }
コード例 #3
0
 public bool showdown()
 {
     _PeriodicTaskHandle.cannel();
     _ScheduleExecutor.stop();
     return(true);
 }
コード例 #4
0
ファイル: TCPManager.cs プロジェクト: chenchungit/ky
 /// <summary>
 /// 停止服务器
 /// </summary>
 /// <param name="port"></param>
 public void Stop()
 {
     socketListener.Stop();
     taskExecutor.stop();
 }