()
| 70 | } |
| 71 | |
| 72 | public Stop(): void { |
| 73 | if (this.isRunning) { |
| 74 | this.isRunning = false; |
| 75 | this.plugins.forEach(x => x.service.Stop()); |
| 76 | |
| 77 | Logger.Get.Log('PluginManager::Stop()'); |
| 78 | } |
| 79 | } |
| 80 | |
| 81 | public Pause() { |
| 82 | if (this.IsRunning) { |
no test coverage detected