增加RPC调用停止实时流播放

This commit is contained in:
648540858
2024-12-12 16:30:40 +08:00
parent 4056955c59
commit ee590d6597
10 changed files with 173 additions and 22 deletions

View File

@@ -5,4 +5,6 @@ import com.genersoft.iot.vmp.service.bean.ErrorCallback;
public interface IStreamPushPlayService {
void start(Integer id, ErrorCallback<StreamInfo> callback, String platformDeviceId, String platformName );
void stop(Integer streamPushId);
}

View File

@@ -98,4 +98,9 @@ public class StreamPushPlayServiceImpl implements IStreamPushPlayService {
}
});
}
@Override
public void stop(Integer streamPushId) {
// 推流无需主动停止
}
}