Add asyncio 101 video
This commit is contained in:
parent
ab96486697
commit
ce067ec582
2 changed files with 2 additions and 1 deletions
|
@ -47,6 +47,7 @@
|
|||
<li>
|
||||
{% active_link /developers/asyncio/ Asynchronous Programming %}
|
||||
<ul>
|
||||
<li>{% active_link /developers/asyncio_101/ Introduction to asyncio %}</li>
|
||||
<li>{% active_link /developers/asyncio_categorizing_functions/ Categorizing Functions %}</li>
|
||||
<li>{% active_link /developers/asyncio_working_with_async/ Working with Async %}</li>
|
||||
<li>{% active_link /developers/asyncio_misc/ Miscellaneous %}</li>
|
||||
|
|
|
@ -21,7 +21,7 @@ For a task to be able to suspend itself, all code that it calls has to have this
|
|||
|
||||
The backwards compatible API works by scheduling a task from a different thread and blocking that thread until the task has been processed by the event loop.
|
||||
|
||||
### [Next step: Categorizing Functions »](/developers/asyncio_categorizing_functions/)
|
||||
### [Next step: asyncio 101 »](/developers/asyncio_101/)
|
||||
|
||||
[0.29]: https://home-assistant.io/blog/2016/09/29/async-sleepiq-emoncms-stocks/
|
||||
[ben]: https://github.com/bbangert/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue