I have a console app (C#), say App1 that runs every x hours to grab a list of people, and then filter the list by some criteria, and creates “cleaner” list. I also have another console app, say App2 that runs every x hours to grab the list created by App1 and does something. I would like to make App1 as “publisher” and App2 as “subscriber”. I want to pass a record at a time or whole list to subscriber.
All the reading I have done on the NServiceBus web site, the communication is done through “message” and did not see any examples where publisher (App1) triggers the subscriber (App2) with actual data, “Hey, here is data xyz, do your job”.
Has anybody have experience using NSeviceBus with data driven trigger approach? Is this possible with NServiceBus?
Thanks.