koisi
2024-08-05 8985905bbe9307cbe10b49d9efec082eebb45ada
src/main/java/com/genersoft/iot/vmp/storager/IRedisCatchStorage.java
@@ -2,15 +2,12 @@
import com.alibaba.fastjson2.JSONObject;
import com.genersoft.iot.vmp.common.SystemAllInfo;
import com.genersoft.iot.vmp.gb28181.bean.AlarmChannelMessage;
import com.genersoft.iot.vmp.gb28181.bean.Device;
import com.genersoft.iot.vmp.gb28181.bean.ParentPlatformCatch;
import com.genersoft.iot.vmp.gb28181.bean.SendRtpItem;
import com.genersoft.iot.vmp.gb28181.bean.*;
import com.genersoft.iot.vmp.media.bean.MediaInfo;
import com.genersoft.iot.vmp.media.bean.MediaServer;
import com.genersoft.iot.vmp.media.event.media.MediaArrivalEvent;
import com.genersoft.iot.vmp.media.zlm.dto.StreamAuthorityInfo;
import com.genersoft.iot.vmp.media.zlm.dto.StreamPushItem;
import com.genersoft.iot.vmp.media.zlm.dto.hook.OnStreamChangedHookParam;
import com.genersoft.iot.vmp.service.bean.GPSMsgInfo;
import com.genersoft.iot.vmp.service.bean.MessageForPushChannel;
import com.genersoft.iot.vmp.storager.dao.dto.PlatformRegisterInfo;
@@ -44,6 +41,8 @@
    void delPlatformRegisterInfo(String callId);
    void updateSendRTPSever(SendRtpItem sendRtpItem);
    List<SendRtpItem> querySendRTPServer(String platformGbId, String channelId, String streamId);
    /**
     * 查询RTP推送信息缓存
@@ -136,6 +135,8 @@
    MediaInfo getStreamInfo(String app, String streamId, String mediaServerId);
    MediaInfo getProxyStream(String app, String streamId);
    void addCpuInfo(double cpuInfo);
    void addMemInfo(double memInfo);
@@ -197,6 +198,8 @@
    void addDiskInfo(List<Map<String, Object>> diskInfo);
    void deleteSendRTPServer(SendRtpItem sendRtpItem);
    List<SendRtpItem> queryAllSendRTPServer();
    List<Device> getAllDevices();
@@ -207,16 +210,23 @@
    void sendChannelAddOrDelete(String deviceId, String channelId, boolean add);
    void sendPlatformStartPlayMsg(MessageForPushChannel messageForPushChannel);
    void sendPlatformStartPlayMsg(SendRtpItem sendRtpItem, ParentPlatform platform);
    void sendPlatformStopPlayMsg(MessageForPushChannel messageForPushChannel);
    void sendPlatformStopPlayMsg(SendRtpItem sendRtpItem, ParentPlatform platform);
    void addPushListItem(String app, String stream, MediaArrivalEvent param);
    StreamPushItem getPushListItem(String app, String stream);
    OnStreamChangedHookParam getPushListItem(String app, String stream);
    void removePushListItem(String app, String stream, String mediaServerId);
    void sendPushStreamClose(MessageForPushChannel messageForPushChannel);
    void addWaiteSendRtpItem(SendRtpItem sendRtpItem, int platformPlayTimeout);
    SendRtpItem getWaiteSendRtpItem(String app, String stream);
    void sendStartSendRtp(SendRtpItem sendRtpItem);
    void sendPushStreamOnline(SendRtpItem sendRtpItem);
}