lawrencehj
2021-02-03 65b4c5cec92e4c024fc868f1ae668d08eb354170
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.genersoft.iot.vmp.vmanager.service;
 
import com.alibaba.fastjson.JSONObject;
import com.genersoft.iot.vmp.common.StreamInfo;
 
/**
 * 点播处理
 */
public interface IPlayService {
 
    void onPublishHandlerForPlayBack(JSONObject resonse, String deviceId, String channelId, String uuid);
    void onPublishHandlerForPlay(JSONObject resonse, String deviceId, String channelId, String uuid);
}