I just started writing pub/sub and the way that I doing this is that I will have a console app that runs every x hours and putting processed list as queue message (1 item per message). Now, on the pub side, I want to listen the input queue and as soon as a message arrives, I would like to publish.
I know I need to set the input queue name and polling intervals in the config file, but how do I make so that the pub actually keeps polling from the input queue.
Thanks.