移除未使用的方法

pull/1653/head
648540858 2024-10-21 12:36:37 +08:00
parent 022b16dbbe
commit 9506bef6cb
2 changed files with 0 additions and 26 deletions

View File

@ -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);

View File

@ -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();