mirror of
https://gitee.com/pan648540858/wvp-GB28181-pro.git
synced 2026-05-18 19:37:50 +08:00
20 lines
458 B
Java
20 lines
458 B
Java
package com.genersoft.iot.vmp.service;
|
|
|
|
import com.genersoft.iot.vmp.common.CommonGbChannel;
|
|
import com.genersoft.iot.vmp.common.StreamInfo;
|
|
|
|
/**
|
|
* 资源播放回调
|
|
*/
|
|
public interface IResourcePlayCallback {
|
|
|
|
/**
|
|
* 资源播放回调
|
|
* @param commonGbChannel 通道
|
|
* @param code
|
|
* @param message
|
|
* @param streamInfo
|
|
*/
|
|
void call(CommonGbChannel commonGbChannel, int code, String message, StreamInfo streamInfo);
|
|
}
|