wvp-GB28181-pro/src/main/java/com/genersoft/iot/vmp/service/IResourceService.java

41 lines
1.2 KiB
Java
Raw Normal View History

package com.genersoft.iot.vmp.service;
import com.genersoft.iot.vmp.common.CommonGbChannel;
import com.genersoft.iot.vmp.common.StreamInfo;
/**
*
* GIS
*/
public interface IResourceService {
/**
*
*/
boolean deleteChannel(CommonGbChannel commonGbChannel);
/**
*
*/
void startPlay(CommonGbChannel commonGbChannel, IResourcePlayCallback callback);
/**
*
*/
void stopPlay(CommonGbChannel commonGbChannel, IResourcePlayCallback callback);
/**
*
* @param commonGbChannel
* @param command ,: left, right, up, down, upleft, upright, downleft, downright, zoomin, zoomout, stop
* @param horizonSpeed 0-255
* @param verticalSpeed 0-255
* @param zoomSpeed
* @return
*/
boolean ptzControl(CommonGbChannel commonGbChannel, String command,
Integer horizonSpeed, Integer verticalSpeed, Integer zoomSpeed);
}