I'm about to code a pet project where part of the functionality relies in the notification from one machine to another.
The workflow is this:
- Person A writes some content
- Person A push a button or something saying: "I'm done"
- Person B gets the update instantaneously
So, my first thought was, create a server and client and that's it! And that's what I'm about to do, but I thought there must be already a something for this.
I know about XMPP but I think it will be overkill ( I don't know actually ) I also heard about pubsubhubbub which looks exactly what I need, but I'm not sure since this is a peer to peer app.
I just need a simple way to let the other peer "Hey, I've finish here" ... that's it, a ping or something.
Is there some sort of peer to peer notification library|plugin|framework out here?