xieb
2023-09-22 ec46a32ca330e5c416302eb082e44fa164b37829
src/main/java/com/dji/sample/manage/service/ILiveStreamService.java
@@ -16,6 +16,7 @@
    /**
     * Get all the drone data that can be broadcast live in this workspace.
     * 获取所有可以在这个工作区中直播的无人机数据。
     * @param workspaceId
     * @return
     */
@@ -24,8 +25,9 @@
    /**
     * Save live capability data.
     * @param liveCapacityReceiver
     * @param timestamp
     */
    void saveLiveCapacity(LiveCapacityReceiver liveCapacityReceiver);
    void saveLiveCapacity(LiveCapacityReceiver liveCapacityReceiver, Long timestamp);
    /**
     * Initiate a live streaming by publishing mqtt message.
@@ -47,4 +49,11 @@
     * @return
     */
    ResponseResult liveSetQuality(LiveTypeDTO liveParam);
    /**
     * Switches the lens of the device during the live streaming.
     * @param liveParam
     * @return
     */
    ResponseResult liveLensChange(LiveTypeDTO liveParam);
}