本文介绍了如何从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中的服务触发应用关闭?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!