Just started learning NServiceBus and trying to understand the concept. When it talks about queues, are we talking about MSMQs on both publisher and subscriber? So, if I have an application that generates a list of something (say, name of animals), then it dumps the list into publisher’s queue. The publisher polls the queue every minute and if there is something in the queue, it will publish to subscriber’s queue for further processing. Does this make sense?
Thanks.