如何从Nest.js中的服务触发应用关闭?

我正在寻找从仍将调用挂钩的Nest.js中的服务触发应用程序关闭的方法。

我在处理服务中的消息时遇到过这样的情况,在某些情况下,这应该会关闭应用程序。我过去常常抛出未处理的异常,但是当我这样做时,Nest.js不会调用像onModuleDestroy这样的钩子,甚至不会调用像onApplicationShutdown这样的关闭钩子,这在我的示例中是必需的。

INestApplication调用.close()按预期工作,但如何将其注入到我的服务中?或者,也许我可以使用其他模式来实现我想要做的事情?

非常感谢您的帮助。


解决方案

您无法插入应用程序。相反,您可以从您的服务发出一个Shutdown事件,让应用程序订阅它,然后在您的main.ts

中触发实际的关闭

服务

export class ShutdownService implements OnModuleDestroy {
  // Create an rxjs Subject that your application can subscribe to
  private shutdownListener$: Subject<void> = new Subject();

  // Your hook will be executed
  onModuleDestroy() {
    console.log('Executing OnDestroy Hook');
  }

  // Subscribe to the shutdown in your main.ts
  subscribeToShutdown(shutdownFn: () => void): void {
    this.shutdownListener$.subscribe(() => shutdownFn());
  }

  // Emit the shutdown event
  shutdown() {
    this.shutdownListener$.next();
  }
}

main.ts

// Subscribe to your service's shutdown event, run app.close() when emitted
app.get(ShutdownService).subscribeToShutdown(() => app.close());

查看此处的运行示例:

相关文章