From 681351d74040d64024c924a6d7da4e17b96d6a38 Mon Sep 17 00:00:00 2001
From: Dectinc Chen <github@dectinc.cc>
Date: 星期五, 16 四月 2021 17:22:44 +0800
Subject: [PATCH] fix typo and broken url
---
src/main/java/com/genersoft/iot/vmp/storager/IRedisCatchStorage.java | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 54 insertions(+), 0 deletions(-)
diff --git a/src/main/java/com/genersoft/iot/vmp/storager/IRedisCatchStorage.java b/src/main/java/com/genersoft/iot/vmp/storager/IRedisCatchStorage.java
index 8bc78b9..d0d07f7 100644
--- a/src/main/java/com/genersoft/iot/vmp/storager/IRedisCatchStorage.java
+++ b/src/main/java/com/genersoft/iot/vmp/storager/IRedisCatchStorage.java
@@ -2,6 +2,9 @@
import com.genersoft.iot.vmp.common.StreamInfo;
import com.genersoft.iot.vmp.conf.MediaServerConfig;
+import com.genersoft.iot.vmp.gb28181.bean.ParentPlatform;
+import com.genersoft.iot.vmp.gb28181.bean.ParentPlatformCatch;
+import com.genersoft.iot.vmp.gb28181.bean.SendRtpItem;
import java.util.Map;
@@ -55,4 +58,55 @@
boolean stopPlayback(StreamInfo streamInfo);
StreamInfo queryPlaybackByDevice(String deviceId, String code);
+
+ void updatePlatformCatchInfo(ParentPlatformCatch parentPlatformCatch);
+
+ ParentPlatformCatch queryPlatformCatchInfo(String platformGbId);
+
+ void delPlatformCatchInfo(String platformGbId);
+
+ void updatePlatformKeepalive(ParentPlatform parentPlatform);
+
+ void delPlatformKeepalive(String platformGbId);
+
+ void updatePlatformRegister(ParentPlatform parentPlatform);
+
+ void delPlatformRegister(String platformGbId);
+
+ void updatePlatformRegisterInfo(String callId, String platformGbId);
+
+ String queryPlatformRegisterInfo(String callId);
+
+ void delPlatformRegisterInfo(String callId);
+
+ void cleanPlatformRegisterInfos();
+
+ void updateSendRTPSever(SendRtpItem sendRtpItem);
+
+ /**
+ * 鏌ヨRTP鎺ㄩ�佷俊鎭紦瀛�
+ * @param platformGbId
+ * @param channelId
+ * @return sendRtpItem
+ */
+ SendRtpItem querySendRTPServer(String platformGbId, String channelId);
+
+ /**
+ * 鍒犻櫎RTP鎺ㄩ�佷俊鎭紦瀛�
+ * @param platformGbId
+ * @param channelId
+ */
+ void deleteSendRTPServer(String platformGbId, String channelId);
+
+ /**
+ * 鏌ヨ鏌愪釜閫氶亾鏄惁瀛樺湪涓婄骇鐐规挱锛圧TP鎺ㄩ�侊級
+ * @param channelId
+ */
+ boolean isChannelSendingRTP(String channelId);
+
+ /**
+ * 娓呯┖鏌愪釜璁惧鐨勬墍鏈夌紦瀛�
+ * @param deviceId 璁惧ID
+ */
+ void clearCatchByDeviceId(String deviceId);
}
--
Gitblit v1.8.0