I am currently working on an online presentation tool. Consider the following scenario:
- Someone gives a presentation
- another person connects to watch said presentation
- >> I want to update the watcher's view when the presenter changes the slide
what would be the better approach?
- forcing the connection to stay open to send updates onSlideChange
- periodically (every second or so) letting the client request an update
- something else I am not aware of
Thanks!