如何删除 NHibernateMessageModule 在 NServiceBus 中的调用?

发布于 2024-09-05 05:54:50 字数 84 浏览 2 评论 0原文

我没有使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

上课铃就是安魂曲 2024-09-12 05:54:51

到目前为止我有这个。

注意我使用温莎城堡作为容器。

NServiceBus 完成配置后,

var container = new WindsorContainer();
NServiceBus.Configure.With()
    .CastleWindsorBuilder(container)
    .XmlSerializer()
    .MsmqTransport()
        .IsTransactional(false)
        .PurgeOnStartup(false)
    .UnicastBus()
        .ImpersonateSender(false)
        .LoadMessageHandlers();

我从温莎城堡中删除该组件,

container.Kernel.RemoveComponent("NServiceBus.SagaPersisters.NHibernate.NHibernateMessageModule");

这不是最优雅的方法,但它有效。

我希望有更好的方法。

So far I have this.

Note I am using Castle Windsor as the container.

After NServiceBus has done its configuration

var container = new WindsorContainer();
NServiceBus.Configure.With()
    .CastleWindsorBuilder(container)
    .XmlSerializer()
    .MsmqTransport()
        .IsTransactional(false)
        .PurgeOnStartup(false)
    .UnicastBus()
        .ImpersonateSender(false)
        .LoadMessageHandlers();

I remove the component from Castle Windsor

container.Kernel.RemoveComponent("NServiceBus.SagaPersisters.NHibernate.NHibernateMessageModule");

Not the most elegant approach but it works.

I am hoping there is a better way.

胡大本事 2024-09-12 05:54:50

您必须在启动总线之前从容器中删除模块,因为之后它会被缓存。
您可以通过在 .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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文