#
Junjie
4 天以前 6daf900a09adcca981f620744bf89851654d88e0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package com.zy.core.thread;
 
 
import com.zy.common.model.NavigateNode;
import com.zy.core.ThreadHandler;
import com.zy.core.model.TrafficControlDataModel;
import com.zy.core.model.param.OperateTrafficControlParam;
 
import java.util.List;
 
public interface TrafficControlThread extends ThreadHandler {
 
    boolean processApply(TrafficControlDataModel applyData);
 
    boolean operateTrafficControl(OperateTrafficControlParam param);
 
    boolean applyTrafficControl(List<NavigateNode> totalNodeList, List<NavigateNode> nodeList, Integer shuttleNo, Integer taskNo);
 
    boolean trafficReport(List<NavigateNode> nodeList, Integer shuttleNo, Integer taskNo);
 
    boolean trafficReportError(Integer shuttleNo, Integer taskNo);
 
    boolean cancelTrafficControl(Integer shuttleNo, Integer taskNo);
 
    boolean forceCancelTrafficControl(Integer shuttleNo);
 
    TrafficControlDataModel queryTrafficControl(Integer shuttleNo, Integer taskNo);
 
    TrafficControlDataModel queryTrafficControl(Integer shuttleNo);
 
    List<TrafficControlDataModel> getAllTrafficControl();
}