zhangnaisong
2024-07-19 55bfebcee6b804faaa65d41105d4333a4117aab5
ard-work/src/main/java/com/ruoyi/media/service/IMediaService.java
@@ -1,9 +1,7 @@
package com.ruoyi.media.service;
import com.dtflys.forest.annotation.Var;
import com.ruoyi.common.core.page.TableDataInfo;
import com.ruoyi.media.domain.*;
import java.lang.reflect.MalformedParameterizedTypeException;
import java.util.List;
import java.util.Map;
@@ -36,9 +34,11 @@
    void removePath(String name);
    List<StreamInfo> paths();
    List<StreamInfo> paths(Integer pageNum,Integer pageSize);
    List<String> getNameList();
    boolean checkNameExist(String name);
    RtspSession getRtspSessionById(String sessionId);
@@ -46,9 +46,11 @@
    RtmpSession getRtmpSessionById(String sessionId);
    List<StreamInfo> getPushStreamList();
    TableDataInfo getPushStreamList(Integer pageNum,Integer pageSize);
    List<StreamInfo> getPullStreamList();
    TableDataInfo getPullWebrtcStreamList(Integer pageNum, Integer pageSize);
    TableDataInfo getPullRtspStreamList(Integer pageNum, Integer pageSize);
    TableDataInfo getPullRtmpStreamList(Integer pageNum, Integer pageSize);
    Boolean kickRtspSession(String sessionId);
@@ -56,10 +58,4 @@
    Boolean kickWebrtcSession(String sessionId);
    /**
     * 配置流媒体参数
     * 刘苏义
     * 2023/10/13 15:17:57
     */
    public String setConfig(Config config);
}