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中的服务触发应用关闭?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:如何从Nest.js中的服务触发应用关闭?


猜你喜欢
- Flexslider 箭头未正确显示 2022-01-01
- Fetch API 如何获取响应体? 2022-01-01
- 如何使用 JSON 格式的 jQuery AJAX 从 .cfm 页面输出查 2022-01-01
- Quasar 2+Apollo:错误:找不到ID为默认的Apollo客户端。如果您在组件设置之外,请使用ProvideApolloClient() 2022-01-01
- CSS媒体查询(最大高度)不起作用,但为什么? 2022-01-01
- 400或500级别的HTTP响应 2022-01-01
- Css:将嵌套元素定位在父元素边界之外一点 2022-09-07
- 失败的 Canvas 360 jquery 插件 2022-01-01
- addEventListener 在 IE 11 中不起作用 2022-01-01
- 使用RSelum从网站(报纸档案)中抓取多个网页 2022-09-06