Explorar o código

移除未使用的方法

648540858 hai 1 ano
pai
achega
9506bef6cb

+ 0 - 4
src/main/java/com/genersoft/iot/vmp/storager/IRedisCatchStorage.java

@@ -100,10 +100,6 @@ public interface IRedisCatchStorage {
     GPSMsgInfo getGpsMsgInfo(String gbId);
     List<GPSMsgInfo> getAllGpsMsgInfo();
 
-    Long getSN(String method);
-
-    void resetAllSN();
-
     MediaInfo getStreamInfo(String app, String streamId, String mediaServerId);
 
     MediaInfo getProxyStream(String app, String streamId);

+ 0 - 22
src/main/java/com/genersoft/iot/vmp/storager/impl/RedisCatchStorageImpl.java

@@ -66,34 +66,12 @@ public class RedisCatchStorageImpl implements IRedisCatchStorage {
         return result;
     }
 
-    @Override
-    public Long getSN(String method) {
-        String key = VideoManagerConstants.SIP_SN_PREFIX  + userSetting.getServerId() + "_" +  method;
-
-        Long result =  redisTemplate.opsForValue().increment(key, 1L);
-        if (result != null && result > Integer.MAX_VALUE) {
-            redisTemplate.opsForValue().set(key, 1);
-            result = 1L;
-        }
-        return result;
-    }
-
     @Override
     public void resetAllCSEQ() {
         String key = VideoManagerConstants.SIP_CSEQ_PREFIX  + userSetting.getServerId();
         redisTemplate.opsForValue().set(key, 1);
     }
 
-    @Override
-    public void resetAllSN() {
-        String scanKey = VideoManagerConstants.SIP_SN_PREFIX  + userSetting.getServerId() + "_*";
-        List<Object> keys = RedisUtil.scan(redisTemplate, scanKey);
-        for (Object o : keys) {
-            String key = (String) o;
-            redisTemplate.opsForValue().set(key, 1);
-        }
-    }
-
     @Override
     public void updatePlatformCatchInfo(PlatformCatch parentPlatformCatch) {
         String key = VideoManagerConstants.PLATFORM_CATCH_PREFIX  + userSetting.getServerId() + "_" +  parentPlatformCatch.getId();