Exemplo n.º 1
0
        public void Start()
        {
            if (!m_Running)
            {
                m_Running = true;
                TimerThread.AddTimer(this);

                TimerProfile prof = GetProfile();

                if (prof != null)
                {
                    prof.Started++;
                }
            }
        }
Exemplo n.º 2
0
        public void Start()
        {
            TimerProfile profile1;

            if (!this.m_Running)
            {
                this.m_Running = true;
                TimerThread.AddTimer(this);
                profile1 = this.GetProfile();
                if (profile1 != null)
                {
                    profile1.RegStart();
                }
            }
        }
Exemplo n.º 3
0
        public void Start()
        {
            if (m_Running)
            {
                return;
            }

            m_Running = true;

            TimerThread.AddTimer(this);

            var prof = GetProfile();

            if (prof != null)
            {
                prof.Started++;
            }
        }