IPlayService.java 656 B

1234567891011121314151617
  1. package com.genersoft.iot.vmp.service;
  2. import com.alibaba.fastjson.JSONObject;
  3. import com.genersoft.iot.vmp.gb28181.event.SipSubscribe;
  4. import com.genersoft.iot.vmp.media.zlm.ZLMHttpHookSubscribe;
  5. import com.genersoft.iot.vmp.vmanager.gb28181.play.bean.PlayResult;
  6. /**
  7. * 点播处理
  8. */
  9. public interface IPlayService {
  10. void onPublishHandlerForPlayBack(JSONObject resonse, String deviceId, String channelId, String uuid);
  11. void onPublishHandlerForPlay(JSONObject resonse, String deviceId, String channelId, String uuid);
  12. PlayResult play(String deviceId, String channelId, ZLMHttpHookSubscribe.Event event, SipSubscribe.Event errorEvent);
  13. }