领胜LDS 键盘AOI检测项目
xcd
2020-07-02 c866d11e0054a7299076fa53830b96610286ac2c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
using System.Threading;
 
namespace Bro.Common.Helper
{
    public delegate void OnTimeoutDelegate();
    public class TimeOutHelper
    {
        private const int TIMEINTERVAL = 1000;
        private bool isPause = false;
        int timeTick = 0;
 
        public event OnTimeoutDelegate OnTimeout;
 
        public Timer MonitorTimer { get; set; }
 
        /// <summary>
        /// 超时最大时间,以秒为单位
        /// </summary>
        public int MaxLimit { get; set; } = 250;
 
        public TimeOutHelper()
        {
            InitialTimer();
        }
 
        private void InitialTimer()
        {
            MonitorTimer = new Timer(new TimerCallback(OnTimeTick), null, Timeout.Infinite, TIMEINTERVAL);
        }
 
        private void OnTimeTick(object state)
        {
            if (!isPause)
            {
                timeTick++;
            }
 
            if (timeTick >= MaxLimit)
            {
                OnTimeout?.Invoke();
                Stop();
            }
        }
 
        public TimeOutHelper(int limit)
        {
            MaxLimit = limit;
            InitialTimer();
        }
 
        public void Start()
        {
            timeTick = 0;
            MonitorTimer.Change(0, TIMEINTERVAL);
        }
 
        public void Pause()
        {
            isPause = true;
        }
 
        public void Resume()
        {
            isPause = false;
        }
 
        public void Stop()
        {
            MonitorTimer.Change(Timeout.Infinite, Timeout.Infinite);
        }
    }
}