648540858
2022-02-24 a42dda2bd3cc1cf8c20cc61e7ad9211eadecbaf3
src/main/java/com/genersoft/iot/vmp/gb28181/event/DeviceOffLineDetector.java
@@ -1,5 +1,6 @@
package com.genersoft.iot.vmp.gb28181.event;
import com.genersoft.iot.vmp.conf.UserSetup;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
@@ -7,8 +8,8 @@
import com.genersoft.iot.vmp.utils.redis.RedisUtil;
/**    
 * @Description:设备离在线状态检测器,用于检测设备状态
 * @author: songww
 * @description:设备离在线状态检测器,用于检测设备状态
 * @author: swwheihei
 * @date:   2020年5月13日 下午2:40:29     
 */
@Component
@@ -16,9 +17,12 @@
   @Autowired
    private RedisUtil redis;
   @Autowired
    private UserSetup userSetup;
   
   public boolean isOnline(String deviceId) {
      String key = VideoManagerConstants.KEEPLIVEKEY_PREFIX + deviceId;
      String key = VideoManagerConstants.KEEPLIVEKEY_PREFIX + userSetup.getServerId() + "_" + deviceId;
      return redis.hasKey(key);
   }
}