#
Junjie
8 天以前 728ad81fa10d2879654c5f9ae4314db94eafb865
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
package com.zy.core.thread;
 
 
import com.zy.common.model.NavigateNode;
import com.zy.core.ThreadHandler;
import com.zy.core.model.TrafficControlDataModel;
 
import java.util.List;
 
public interface TrafficControlThread extends ThreadHandler {
 
    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();
}