Realtime updates for subscribers
In short: I have 2 windows applications(written using .NET) and need to pass updates from one to another.
Example: operator has his program that receives a call. He needs to fill details about ca开发者_如何学JAVAller in his program. Dispatcher has another program(that uses same database) and after operator started to fill information about caller-he must see that typed sentences in "realtime". The idea is that he must have some sort of card about caller and see its updates. The problem here is: i want to do as less calls to the database as possible, because there can be many dispatchers and operators at the same time. Ive heard about MQ message brokers(like rabbitMQ, activeMQ), but havent used them yet(just "heard"), and dont really now if they are applicable in such situation.P.S. hope ive described the question normally. Please tell me if i wrote something wrongly or not clearly. Thank you.
Here is the answer i wanted: Publish/Subscribe samples with RabbitMQ in .NET
精彩评论