()
| 117 | |
| 118 | // stop 不能清除本地进程状态,后面需要用来升级。 |
| 119 | public void stop() throws Exception { |
| 120 | // app Unregister |
| 121 | var iModule = (IModule)service; |
| 122 | iModule.UnRegister(); |
| 123 | // app stop |
| 124 | service.stop(); |
| 125 | if (jar != null) { |
| 126 | jar.close(); |
| 127 | jar = null; |
| 128 | } |
| 129 | } |
| 130 | |
| 131 | public void stopBefore() throws Exception { |
| 132 | service.stopBefore(); |
nothing calls this directly
no test coverage detected