views:

42

answers:

1

I need ability to reliably sync some chunks of textual data between all running instances of my application. What's the best way to make it?

+2  A: 

Generally speaking you need the Observer Pattern. You need something to act as a server. After that it depends whether if a change happened at some application should notify the observer or the observer should request change summary from every client (at some intervals), merge it and return it to the clients. It is too complex to answer with such minimum information you provided.

Svetlozar Angelov