* Reload/refresh the service
(...args: any[])
| 85 | * Reload/refresh the service |
| 86 | */ |
| 87 | async reload(...args: any[]): Promise<TState> { |
| 88 | logger.debug(`Reloading ${this.serviceName}`); |
| 89 | this.isInitialized = false; |
| 90 | return this.initialize(...args); |
| 91 | } |
| 92 | |
| 93 | /** |
| 94 | * Cleanup resources (can be overridden by subclasses) |
nothing calls this directly
no test coverage detected