Example #1
0
 /** 是否锁定中 */
 public bool isLocking()
 {
     return(_lastCheckTime != -1L && (DateControl.getTimeSeconds() - _lastCheckTime) < _timeMax);
 }
Example #2
0
 /** 锁定 */
 public void lockOn()
 {
     _lastCheckTime = DateControl.getTimeSeconds();
 }