移除无用方法和变量
parent
683381b995
commit
ef66bd8781
|
@ -20,12 +20,8 @@ public class VideoManagerConstants {
|
||||||
|
|
||||||
public static final String INVITE_PREFIX = "VMP_INVITE_INFO";
|
public static final String INVITE_PREFIX = "VMP_INVITE_INFO";
|
||||||
|
|
||||||
public static final String PLATFORM_KEEPALIVE_PREFIX = "VMP_PLATFORM_KEEPALIVE_";
|
|
||||||
|
|
||||||
public static final String PLATFORM_CATCH_PREFIX = "VMP_PLATFORM_CATCH_";
|
public static final String PLATFORM_CATCH_PREFIX = "VMP_PLATFORM_CATCH_";
|
||||||
|
|
||||||
public static final String PLATFORM_REGISTER_PREFIX = "VMP_PLATFORM_REGISTER_";
|
|
||||||
|
|
||||||
public static final String PLATFORM_REGISTER_INFO_PREFIX = "VMP_PLATFORM_REGISTER_INFO_";
|
public static final String PLATFORM_REGISTER_INFO_PREFIX = "VMP_PLATFORM_REGISTER_INFO_";
|
||||||
|
|
||||||
public static final String SEND_RTP_INFO = "VMP_SEND_RTP_INFO:";
|
public static final String SEND_RTP_INFO = "VMP_SEND_RTP_INFO:";
|
||||||
|
|
|
@ -28,10 +28,6 @@ public interface IRedisCatchStorage {
|
||||||
|
|
||||||
void delPlatformCatchInfo(String platformGbId);
|
void delPlatformCatchInfo(String platformGbId);
|
||||||
|
|
||||||
void delPlatformKeepalive(String platformGbId);
|
|
||||||
|
|
||||||
void delPlatformRegister(String platformGbId);
|
|
||||||
|
|
||||||
void updatePlatformRegisterInfo(String callId, PlatformRegisterInfo platformRegisterInfo);
|
void updatePlatformRegisterInfo(String callId, PlatformRegisterInfo platformRegisterInfo);
|
||||||
|
|
||||||
PlatformRegisterInfo queryPlatformRegisterInfo(String callId);
|
PlatformRegisterInfo queryPlatformRegisterInfo(String callId);
|
||||||
|
|
|
@ -88,17 +88,6 @@ public class RedisCatchStorageImpl implements IRedisCatchStorage {
|
||||||
redisTemplate.delete(VideoManagerConstants.PLATFORM_CATCH_PREFIX + userSetting.getServerId() + "_" + platformGbId);
|
redisTemplate.delete(VideoManagerConstants.PLATFORM_CATCH_PREFIX + userSetting.getServerId() + "_" + platformGbId);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public void delPlatformKeepalive(String platformGbId) {
|
|
||||||
redisTemplate.delete(VideoManagerConstants.PLATFORM_KEEPALIVE_PREFIX + userSetting.getServerId() + "_" + platformGbId);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void delPlatformRegister(String platformGbId) {
|
|
||||||
redisTemplate.delete(VideoManagerConstants.PLATFORM_REGISTER_PREFIX + userSetting.getServerId() + "_" + platformGbId);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void updatePlatformRegisterInfo(String callId, PlatformRegisterInfo platformRegisterInfo) {
|
public void updatePlatformRegisterInfo(String callId, PlatformRegisterInfo platformRegisterInfo) {
|
||||||
String key = VideoManagerConstants.PLATFORM_REGISTER_INFO_PREFIX + userSetting.getServerId() + "_" + callId;
|
String key = VideoManagerConstants.PLATFORM_REGISTER_INFO_PREFIX + userSetting.getServerId() + "_" + callId;
|
||||||
|
|
Loading…
Reference in New Issue