本文介绍了NServiceBus:如何不自动创建队列的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我真的希望能够阻止 NSB 自动创建我的队列.我不喜欢它如何以完全不受限制的权限创建它们.这可能吗?
I really want to be able to prevent NSB from creating my queues automatically. I don’t like how it creates them with totally unrestricted permissions. Is this possible?
推荐答案
您可以通过实现 IWantCustomInitialization 并在您的代码中指定它来提供您的自定义初始化代码:
You can provide your custom initialization code by implementing IWantCustomInitialization and specifying it in your code:
void IWantCustomInitialization.Init()
{
NServiceBus.Configure.With()
.DefaultBuilder()
.MsmqTransport()
.DoNotCreateQueues()
.XmlSerializer();
}
这篇关于NServiceBus:如何不自动创建队列的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!