如何使用 NServiceBus Host 仅处理特定消息

发布于 2024-12-08 10:35:00 字数 158 浏览 0 评论 0原文

我有一个单独的消息类库。每个处理程序都实现 IHandleMessages。我还有一个单独的类库,它使用 NServiceBus.Host 充当消息处理服务。我知道我可以处理消息的排序,但是我可以说出我希望主机处理哪些消息处理程序吗?目前看来,任何对 IHandleMessage 的引用都将由主机处理

I have a seperate class library of messages. Each handler implementing IHandleMessages. I also have a seperate class library that uses the NServiceBus.Host to act as a message handling service. I know I can handle the ordering of messages but can I say which message handlers I want the host to handle? At the minute it seems that any reference to IHandleMessage will be handled by the host

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

何处潇湘 2024-12-15 10:35:00

您可以自定义初始化端点并使用 With(IEnumerabletypesToScan) 重载。您还需要包括 NSB 类型。我建议将程序集拆分为多个程序集,然后使用 With(IEnumberable assembly) 重载来简化过程。您仍然可以部署所有处理程序,但只需将端点配置为使用特定的集合。

You can custom initialize your endpoint and use the With(IEnumerable<Type> typesToScan) overload. You will need to include the NSB types as well. I would recommend splitting up the assembly into multiple assemblies and then use the With(IEnumberable assemblies) overload to simplify the process. You could still deploy all handlers, but just configure endpoints to use a specific set.

唱一曲作罢 2024-12-15 10:35:00

为什么不为每个 NServiceBus 主机配备一个处理程序呢?让它变得美好而简单。

Why not just have one handler per NServiceBus host? Makes it nice and easy.

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