1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package com.dji.sample.wayline.service;
|
| import com.dji.sample.component.mqtt.model.CommonTopicReceiver;
| import org.springframework.messaging.MessageHeaders;
|
| /**
| * @author sean
| * @version 1.1
| * @date 2022/6/9
| */
| public interface IFlightTaskService {
|
| /**
| * Handle the progress messages of the flight tasks reported by the dock.
| * @param receiver
| */
| void handleProgress(CommonTopicReceiver receiver, MessageHeaders headers);
| }
|
|