Add asyncio 101 video

This commit is contained in:
Paulus Schoutsen 2017-04-08 17:22:13 -07:00
parent ab96486697
commit ce067ec582
2 changed files with 2 additions and 1 deletions

View File

@ -47,6 +47,7 @@
<li> <li>
{% active_link /developers/asyncio/ Asynchronous Programming %} {% active_link /developers/asyncio/ Asynchronous Programming %}
<ul> <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_categorizing_functions/ Categorizing Functions %}</li>
<li>{% active_link /developers/asyncio_working_with_async/ Working with Async %}</li> <li>{% active_link /developers/asyncio_working_with_async/ Working with Async %}</li>
<li>{% active_link /developers/asyncio_misc/ Miscellaneous %}</li> <li>{% active_link /developers/asyncio_misc/ Miscellaneous %}</li>

View File

@ -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. 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 &raquo;](/developers/asyncio_categorizing_functions/) ### [Next step: asyncio 101 &raquo;](/developers/asyncio_101/)
[0.29]: https://home-assistant.io/blog/2016/09/29/async-sleepiq-emoncms-stocks/ [0.29]: https://home-assistant.io/blog/2016/09/29/async-sleepiq-emoncms-stocks/
[ben]: https://github.com/bbangert/ [ben]: https://github.com/bbangert/