nServiceBus UnicastBusConfig.MessageEndpointMappings.Endpoint
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
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.这是您的队列的名称。
It is a name of your QUEUE.