2

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

4

2 回答 2

6

Endpoint 属性是目标端点的地址,通常采用格式"queue@machine""queue"在本地计算机上时。

于 2011-06-20T11:08:18.577 回答
0

这是您的 QUEUE 的名称。

<UnicastBusConfig>
   <MessageEndpointMappings>
     <add Messages="YOURASSEMBLYNAME" Endpoint="NAMEOFQUEUE@MACHINENAME"></add>
   </MessageEndpointMappings>
</UnicastBusConfig>
于 2017-03-14T06:47:00.237 回答