()
| 29 | } |
| 30 | |
| 31 | public stop() { |
| 32 | try { |
| 33 | if (this.processWrapper?.exitCode() == null) { |
| 34 | this.processWrapper?.kill(); |
| 35 | } |
| 36 | this.processWrapper = undefined; |
| 37 | } catch (error: any) {} |
| 38 | } |
| 39 | } |
| 40 | |
| 41 | export default class OpenFrpTask implements ILifeCycleTask { |