From c69b64c756770067c8c89d1f2f2fb80d4a88031f Mon Sep 17 00:00:00 2001
From: 648540858 <648540858@qq.com>
Date: 星期二, 28 五月 2024 10:23:17 +0800
Subject: [PATCH] 修复CSEQ重置错误 #1449

---
 src/main/java/com/genersoft/iot/vmp/service/redisMsg/IRedisRpcService.java |   11 ++++++-----
 1 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/src/main/java/com/genersoft/iot/vmp/service/redisMsg/IRedisRpcService.java b/src/main/java/com/genersoft/iot/vmp/service/redisMsg/IRedisRpcService.java
index 8d1b7f0..b4bd72c 100644
--- a/src/main/java/com/genersoft/iot/vmp/service/redisMsg/IRedisRpcService.java
+++ b/src/main/java/com/genersoft/iot/vmp/service/redisMsg/IRedisRpcService.java
@@ -6,16 +6,17 @@
 
 public interface IRedisRpcService {
 
-    SendRtpItem getSendRtpItem(SendRtpItem sendRtpItem);
+    SendRtpItem getSendRtpItem(String sendRtpItemKey);
 
-    WVPResult startSendRtp(SendRtpItem sendRtpItem);
+    WVPResult startSendRtp(String sendRtpItemKey, SendRtpItem sendRtpItem);
 
-    void waitePushStreamOnline(SendRtpItem sendRtpItem, CommonCallback<SendRtpItem> callback);
+    WVPResult stopSendRtp(String sendRtpItemKey);
 
-    WVPResult stopSendRtp(SendRtpItem sendRtpItem);
+    long waitePushStreamOnline(SendRtpItem sendRtpItem, CommonCallback<String> callback);
 
     void stopWaitePushStreamOnline(SendRtpItem sendRtpItem);
 
-    void rtpSendStopped(SendRtpItem sendRtpItem);
+    void rtpSendStopped(String sendRtpItemKey);
 
+    void removeCallback(long key);
 }

--
Gitblit v1.8.0