Just like in SO, where one is answering a question, if somebody has answered said question, a notification will appear (via AJAX?). My only way of somewhat replicating this is by including a timeout on my script that fetches if there is an update every n seconds. Is there a way to do this using observer pattern on PHP + Javascript (w/ jQuery)?
|
|
|
|
|
|
|
you have to look at the ReverseAJAX or COMET methodologies. As per wikipedia
EDIT: i suggest you to implement the following approach, this is simple to implement. I take stackoverflow answering as an example.
Hope this helps. Cheers Ramesh Vel |
||||
|
|
|
If you use timeouts to query the server for updates, it may still be considered a peculiar implementation of the Observer pattern. Unfortunately, it's not possible to do it the other way around. If the server finishes responding to the main HTTP request, the client just finishes "listening" to it. The only way to do this is to make an asynchronous request from the client. |
||
|
|
