nServiceBus UnicastBusConfig.MessageEndpointMappings.Endpoint

发布于 2024-11-16 05:09:59 字数 162 浏览 5 评论 0原文

我正在使用 NServiceBus 的自定义配置,并且正在实现 IConfigurationSource。

对于 UnicastBusConfig,属性 UnicastBusConfig.MessageEndpointMappings[n].Endpoint 应该是什么?

谢谢

I am playing with custom config for NServiceBus and I am implementing IConfigurationSource.

In the case of UnicastBusConfig, what is property UnicastBusConfig.MessageEndpointMappings[n].Endpoint supposed to be?

Thank you

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

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

发布评论

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

评论(2

葬心 2024-11-23 05:09:59

Endpoint 属性是目标端点的地址,通常采用 "queue@machine" 格式或 "queue"(如果位于本地计算机上)。

The Endpoint property is the address of the target endpoint, usually in the format "queue@machine" or "queue" when it is on a local machine.

不可一世的女人 2024-11-23 05:09:59

这是您的队列的名称。

<UnicastBusConfig>
   <MessageEndpointMappings>
     <add Messages="YOURASSEMBLYNAME" Endpoint="NAMEOFQUEUE@MACHINENAME"></add>
   </MessageEndpointMappings>
</UnicastBusConfig>

It is a name of your QUEUE.

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