From 029bd52d754627b812aab677f2c5a7ff36851cda Mon Sep 17 00:00:00 2001 From: wuzeyu <1223318623@qq.com> Date: 星期二, 22 十月 2024 10:54:00 +0800 Subject: [PATCH] 优化代码 --- pipIrr-platform/pipIrr-mw/pipIrr-mw-rtu/src/main/java/com/dy/rtuMw/server/local/CommandInnerDeaLer.java | 15 +++++++++++++-- 1 files changed, 13 insertions(+), 2 deletions(-) diff --git a/pipIrr-platform/pipIrr-mw/pipIrr-mw-rtu/src/main/java/com/dy/rtuMw/server/local/CommandInnerDeaLer.java b/pipIrr-platform/pipIrr-mw/pipIrr-mw-rtu/src/main/java/com/dy/rtuMw/server/local/CommandInnerDeaLer.java index a2dfc3a..927c1b0 100644 --- a/pipIrr-platform/pipIrr-mw/pipIrr-mw-rtu/src/main/java/com/dy/rtuMw/server/local/CommandInnerDeaLer.java +++ b/pipIrr-platform/pipIrr-mw/pipIrr-mw-rtu/src/main/java/com/dy/rtuMw/server/local/CommandInnerDeaLer.java @@ -1,6 +1,6 @@ package com.dy.rtuMw.server.local; -import com.dy.common.mw.UnitStartedCallbackInterface; +import com.dy.common.mw.UnitCallbackInterface; import com.dy.common.mw.channel.tcp.TcpUnit; import com.dy.common.mw.protocol.Command; import com.dy.rtuMw.server.local.localProtocol.*; @@ -23,6 +23,8 @@ return this.clock(com) ; }else if(code.equals(CodeLocal.onLine)){ return this.onLine(com) ; + }else if(code.equals(CodeLocal.onLineStatistics)){ + return this.onLineStateStatistics(com) ; }else if(code.equals(CodeLocal.allProtocols)){ return this.allProtocols(com) ; }else if(code.equals(CodeLocal.stopTcpSv)){ @@ -54,6 +56,15 @@ } /** + * 缁熻鍦ㄧ嚎涓庝笉鍦ㄧ嚎鎯呭喌 + * @throws Exception + */ + private Command onLineStateStatistics(Command command) throws Exception{ + RtuOnLineStateStatisticsVo vo = new RtuOnLineStateStatisticsDeal().deal() ; + return ReturnCommand.successed("鏌ヨ鎵�鏈夋祴绔欏湪绾挎儏鍐电粨鏋�", command.getId(), command.getCode(), vo) ; + } + + /** * 鏌ヨ鎵�鏈塕TU鍗忚閰嶇疆 * @throws Exception */ @@ -67,7 +78,7 @@ * @throws Exception */ private Command stopTcpSv(Command command) throws Exception{ - TcpUnit.getInstance().stop(new UnitStartedCallbackInterface(){ + TcpUnit.getInstance().stop(new UnitCallbackInterface(){ public void call(Object obj) throws Exception { } -- Gitblit v1.8.0