Open
Description
Suppose I have a situation where I need to keep a client-side object up to date with a server-side object. The object is large (say 100KB). I intended to subscribe to incremental updates coming from the server. However, I need the entire initial state immediately after being connected. Is there some way for my callee to know he was just connected? Or do you use a monitor event externally and have that trigger some method on the callee? Or do you have the server use a "new connection" event to automatically send some data to that client? Is there even a way to make the server publish something to a specific sessionID? Or do you use a key-frame approach? Which is easiest with WampSharp? Just looking for suggestions, thanks.