Updated Scheduling Functions (markdown)

Lonami 2019-07-31 13:13:04 +02:00
parent 04f2431660
commit 4c818131d6

@ -27,8 +27,7 @@ def foo_cb():
foo_cb()
```
This schedules itself again when it runs, so it is always running. It runs, 10 minutes pass, it schedules itself again, and repeat. This is similar to JavaScript's `setTimeout`.
This schedules itself again when it runs, so it is always running. It runs, 10 minutes pass, it schedules itself again, and repeat. This is similar to JavaScript's [`setTimeout`](https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/setTimeout).
You can also use `while` loops:
```python