开发者

Difference between Bus.Publish and Bus.Send in NServiceBus?

开发者 https://www.devze.com 2023-02-09 03:07 出处:网络
What are th开发者_如何学编程e essential differences between publishing a message using Bus.Publish and sending a message using Bus.Send?I am looking to understand how they differ and also when I shoul

What are th开发者_如何学编程e essential differences between publishing a message using Bus.Publish and sending a message using Bus.Send? I am looking to understand how they differ and also when I should choose to use one over the other.


Publishing is used to notify multiple Subscribers of a particular event. A Publishing endpoint will have subscription storage to identify where to send messages to. Sending is typically used to issue a command to an endpoint. A command is telling the endpoint to do something and should not expect a reply(although you sometimes do want a reply and NSB supports this).

The reason you do not see a destination for Send() is that you specify the destination via configuration. In your app.config you will map message types(a whole assembly or a class) to a destination. When you do so, you do not have to provide the destination.


Bus.Publish: used when you don't know where the message is going (0 to many subscribers).
Bus.Send: when you are sending a message to a specific handler (client to server).


ususally Context.Publish() is for publishing Event Type and Context.Send() is for Command Type

0

精彩评论

暂无评论...
验证码 换一张
取 消