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

How to trigger application shutdown from a service in Nest.js?(如何从Nest.js中的服务触发应用关闭?)
本文介绍了如何从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());

查看此处的运行示例:

这篇关于如何从Nest.js中的服务触发应用关闭?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Update another component when Formik form changes(当Formik表单更改时更新另一个组件)
Formik validation isSubmitting / isValidating not getting set to true(Formik验证正在提交/isValiating未设置为True)
React Validation Max Range Using Formik(使用Formik的Reaction验证最大范围)
Validation using Yup to check string or number length(使用YUP检查字符串或数字长度的验证)
Updating initialValues prop on Formik Form does not update input value(更新Formik表单上的初始值属性不会更新输入值)
password validation with yup and formik(使用YUP和Formick进行密码验证)