What happens when I subscribe to a message using NServiceBus?
- by Ben Aston
When I subscribe as the recipient of a certain type of message using NServiceBus
Bus.Subscribe<MyMessage>()
What am I actually doing? Am I specifying that a particular method on the recipient type will be invoked upon message receipt? If so, within what context does the method run - in a static context, or within the context of a new'd-up…