648540858
2024-04-18 2a765a93ebb30534c60a19adf58469e317c382cd
src/main/java/com/genersoft/iot/vmp/service/redisMsg/IRedisRpcService.java
@@ -6,11 +6,16 @@
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);
    void waitePushStreamOnline(SendRtpItem sendRtpItem, CommonCallback<String> callback);
    void stopWaitePushStreamOnline(String sendRtpItemKey, SendRtpItem sendRtpItem);
    void rtpSendStopped(String sendRtpItemKey);
}