| | |
| | | while (true) { |
| | | try { |
| | | listenSocketMessage(); |
| | | listenInit();//监听初始化事件 |
| | | } catch (Exception e) { |
| | | e.printStackTrace(); |
| | | } |
| | |
| | | Thread otherThread = new Thread(() -> { |
| | | while (true) { |
| | | try { |
| | | listenInit();//监听初始化事件 |
| | | saveLog();//保存数据 |
| | | } catch (Exception e) { |
| | | e.printStackTrace(); |
| | |
| | | |
| | | InnerSuhttleExtend extend = (InnerSuhttleExtend) this.shuttleProtocol.getExtend(); |
| | | boolean res = this.shuttleProtocol.getMode() == 0 |
| | | && !this.shuttleProtocol.getErrorCode().equals("0") |
| | | && extend.getSuspendState() == 1 |
| | | || !this.shuttleProtocol.getErrorCode().equals("0") |
| | | || extend.getSuspendState() == 1 |
| | | ; |
| | | return res; |
| | | } |