Does PeriodicCallback
ensure no parallel executions? Is the callback triggered while a previous triggered one is still running or does it ensure that there is only one callback running at a time? As far as I can see the later one is true, but I want to be sure! I should control that time of asynchronous function is no longer than next periodiccallback
scheduler.
For example:
If I have a periodiccallback
every 5 seconds and my function time sometimes (because makes http request etc) is longer (for example 7 second), how can I jump the "10 second" and pass to 15? Only when it happens.