648540858
2024-05-20 d70bfb53dd5d92d0405f7ce3d2c9bbabce26184b
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);
}