Just wondering if there was a commonly used method to notify subscribers (javascript clients) of observable collections (Rx/Knockout.js) of changes on the server side.
I'd like to have an object which does two-way live data-binding between collections. Ie. the table on the browser is bound to a collection which is bound to another collection on the server which is bound to a database table or cached data-set (all implementing inotify...).
Theoretically it sounds possible, but can't seem to find any common way of doing this.
I wouldn't want to use a system where entire data-sets were being re-sent - I'd like to utilise the event based updates Rx or something similar provides (maybe like ConnectableObservable over websockets?).
If not, maybe will have to code it up?
Thanks in advance. Andrew
(clinq, reactiveobject, websocket)