| | |
| | | /** |
| | | * @Author: liurunyu |
| | | * @Date: 2024/11/3 13:12 |
| | | * @Description 只有驱动+协议解析器才知道RTU真实的状态,所认提供此接口,向外通知设备的一些状态 |
| | | * @Description 只有驱动+协议解析器才知道RTU真实的状态,所以提供此接口,向外通知设备的一些状态 |
| | | */ |
| | | public interface Notify { |
| | | /** |
| | |
| | | * @param protocolVersion |
| | | * @param info |
| | | */ |
| | | public void notify(String rtuAddr, |
| | | void notify(String rtuAddr, |
| | | String protocolName, |
| | | Short protocolVersion, |
| | | NotifyInfo ...info) ; |
| | |
| | | /** |
| | | * @Author: liurunyu |
| | | * @Date: 2024/11/3 13:12 |
| | | * @Description |
| | | * @Description 驱动模块通知的信息,标识类接口,无具体方法 |
| | | */ |
| | | public interface NotifyInfo { |
| | | } |