@@ -1731,19 +1731,18 @@ Asynchronous tasks can create unexpected race conditions in your code.
1731
1731
All trigger decorators call the function as an asynchronous task when the trigger occurs. All tasks
1732
1732
you create explicitly are also asynchronous. This allows each function to run in parallel with
1733
1733
other tasks, and to yield control to other tasks and all other HASS activities potentially anywhere
1734
- in the function. However, if two closely-spaced triggers occur (or different functions have the
1734
+ in the function. However, if two closely-spaced triggers occur (or multiple functions have the
1735
1735
same trigger), although the second trigger will begin running after the first, there is no guarantee
1736
1736
that the first task will have completed (or even executed any statements) before the second task
1737
1737
start running. Both trigger functions will be running asynchronously, and the order of execution of
1738
- code among the tasks is not guaranteed. The same is true if you start two tasks using `` task.create() ``
1739
- without any delay: the code in the tasks could run in any order relative to each other.
1738
+ your code among the active tasks is not guaranteed. The same is true if you start two tasks using
1739
+ `` task.create() `` without any delay: the code in the tasks could run in any order relative to each other.
1740
1740
1741
1741
If this is a problem for your application logic, various solutions including using ``asyncio.Lock ``
1742
1742
or ``asyncio.Event ``, using ``task.unique() `` to ensure only one task is running at a time, or using
1743
1743
``state_hold `` in the trigger arguments to ensure the trigger condition persists for some time before
1744
1744
triggering the function.
1745
1745
1746
-
1747
1746
Trigger Closures
1748
1747
^^^^^^^^^^^^^^^^
1749
1748
@@ -2163,7 +2162,7 @@ it doesn't faithfully mimic Python. Here are some areas where pyscript differs
2163
2162
correct manner. So it's not necessary to use ``async `` and ``await `` in pyscript code - they are optional.
2164
2163
However, if you declare a function in pyscript as ``async def ``, then it doesn't behave correctly
2165
2164
like an async function in Python (i.e., calling it actually executes the function, rather than returning
2166
- a co-routine. If you truly need an async function in your code, use `@pyscript_compile `.
2165
+ a co-routine) . If you truly need an async function in your code, use `@pyscript_compile `.
2167
2166
- All pyscript functions are async. So if you call a Python module that takes a pyscript function as
2168
2167
a callback argument, that argument is an async function, not a normal function. So a Python module
2169
2168
won't be able to call that pyscript function unless it uses ``await ``, which requires that function to
0 commit comments