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
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
Endpoint 属性是目标端点的地址,通常采用格式"queue@machine"
或"queue"
在本地计算机上时。
这是您的 QUEUE 的名称。
<UnicastBusConfig>
<MessageEndpointMappings>
<add Messages="YOURASSEMBLYNAME" Endpoint="NAMEOFQUEUE@MACHINENAME"></add>
</MessageEndpointMappings>
</UnicastBusConfig>