BoxedIce.ServerDensity.Agent.Agent.Start C# (CSharp) 메소드

Start() 개인적인 메소드

private Start ( ) : void
리턴 void
        private void Start()
        {
            while (!_isStopped)
            {
                DoChecks();
                RemoveSystemStatsCheck();
                Log.InfoFormat("Checks complete.  Sleeping for {0} seconds", _config.CheckInterval / 1000);
                Thread.Sleep(_config.CheckInterval);
            }
        }