liurunyu
2023-11-20 fb31efc4c1efee99164dc83f6f67f1f609d1ba40
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.dy.common.mw.protocol;
 
public class CommandType {
 
    /**
     * 针对监控中间件的内部命令
     * 可实现同步,命令结果通过命令的发送网络通道返回
     */
    public static final String innerCommand = "innerCommand" ;
    
    /**
     * 针对Rtu外部命令
     * 只能是异步,命令结果通过相关的信息发布通道发布出去
     */
    @SuppressWarnings("unused")
    public static final String outerCommand = "outerCommand" ;
    
    /**
     * 本命令是一个别的命令的结果(结果以命令的方式表示)
     */
    public static final String resultCommand = "resultCommand" ;
    
}