如何删除 NHibernateMessageModule 在 NServiceBus 中的调用?
我没有使用 nhibernate saga 持久性,因此我不需要 NHibernateMessageModule。
那么我该如何删除它呢?
I am not using the nhibernate saga persistence and hence I do not need the NHibernateMessageModule.
So how do i remove it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
到目前为止我有这个。
注意我使用温莎城堡作为容器。
NServiceBus 完成配置后,
我从温莎城堡中删除该组件,
这不是最优雅的方法,但它有效。
我希望有更好的方法。
So far I have this.
Note I am using Castle Windsor as the container.
After NServiceBus has done its configuration
I remove the component from Castle Windsor
Not the most elegant approach but it works.
I am hoping there is a better way.
您必须在启动总线之前从容器中删除模块,因为之后它会被缓存。
您可以通过在 .CreateBus().Start() 之前调用 .RunCustomAction() 并将您的代码包含在其中来完成此操作。
在内部,CastleWindsorBuilder 执行以下操作:
Component.For(GetAllServiceTypesFor(concreteComponent)).ImplementedBy(concreteComponent);
因此,您可能还需要删除其注册的所有接口的组件 - 即 IMessageModule。
You have to remove the module from the container before starting the bus, because afterwards it gets cached.
You can do this by calling .RunCustomAction() before .CreateBus().Start() and including your code in there.
Internally, the CastleWindsorBuilder does this:
Component.For(GetAllServiceTypesFor(concreteComponent)).ImplementedBy(concreteComponent);
So you might also need to remove the component for all the interfaces it is registered - meaning IMessageModule.