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中的服务触发应用关闭?
基础教程推荐
猜你喜欢
- 在 JS 中获取客户端时区(不是 GMT 偏移量) 2022-01-01
- 在for循环中使用setTimeout 2022-01-01
- 当用户滚动离开时如何暂停 youtube 嵌入 2022-01-01
- 响应更改 div 大小保持纵横比 2022-01-01
- 我什么时候应该在导入时使用方括号 2022-01-01
- Karma-Jasmine:如何正确监视 Modal? 2022-01-01
- 悬停时滑动输入并停留几秒钟 2022-01-01
- 角度Apollo设置WatchQuery结果为可用变量 2022-01-01
- 有没有办法使用OpenLayers更改OpenStreetMap中某些要素 2022-09-06
- 动态更新多个选择框 2022-01-01