Ryan C. Gordon 90efb63e52 examples: Improve webpage generation in various ways, add thumbnails, etc. há 4 meses atrás
..
README.txt e79ce2a200 asyncio: Added async i/o APIs. há 4 meses atrás
load-bitmaps.c e79ce2a200 asyncio: Added async i/o APIs. há 4 meses atrás
thumbnail.png 90efb63e52 examples: Improve webpage generation in various ways, add thumbnails, etc. há 4 meses atrás

README.txt

This example code loads a few bitmap files from disk using the asynchronous
i/o, and then draws it to the window. It uses a task group to watch multiple
reads and deal with them in whatever order they finish.

Note that for a single tiny file like this, you'd probably not want to bother
with async i/o in real life, but this is just an example of how to do it.