Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Erik Feher <[email protected]>
  • Loading branch information
trgiangdo and erikfTW authored Sep 26, 2023
1 parent 5175ef6 commit 9592d60
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/manuals/core/scheduling/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,16 @@ module <a href="./code_example/my_config.py" download>`my_config.py`</a>.

## Start/Stop the scheduler

For the scheduler to run the scheduled methods, first you need to start the scheduler using the `start()` method.
To make the scheduler execute the scheduled methods, you must first start the scheduler by using the `start()` method.

```python
import taipy as tp

tp.Scheduler.start()
```

Once the scheduler is started, the scheduled methods will run in the background at the scheduled time.
While the scheduler is running, you can schedule other methods without being blocked by the scheduler.
Once the scheduler is started, the scheduled methods will run in the background at their specified times.
While the scheduler is running, you can execute other methods without being blocked by the scheduler.

!!! info "Schedule a method before and after starting the scheduler"

Expand Down Expand Up @@ -249,7 +249,7 @@ tp.Scheduler.every().second.do(tp.submit, monthly_scenario)
tp.Scheduler.clear()
```

## Shortcut for scheduling Taipy methods
## Shortcut for scheduling most used Taipy methods

Taipy `Scheduler^` provides shortcut for scheduling popular Taipy methods, including:

Expand Down

0 comments on commit 9592d60

Please sign in to comment.