Will setInterval give me Delay?
- by Oliver Schöning
I am setting up a JavaScript Server for my Game.
Am I understanding this correctly:
If I use setInterval to call a function every second, and takes 2 seconds to process. Then I am going to "stack up" requests indefinetly the Client will become more and more out of sync?
If I use setTimeout, and specify 1 second. Then the function will run (again, lets say 2 seconds) and then start the timeout. And not stack up requests.