asyncio
asyncio is a c++20 library to write concurrent code using the async/await syntax.
File Explorer
Download Latest Version (.zip)- ci.yml
- benchmark.md
- awaitable.h
- future.h
- promise.h
- epoll_selector.h
- event.h
- kqueue_selector.h
- selector.h
- asyncio_ns.h
- callstack.h
- event_loop.h
- exception.h
- finally.h
- gather.h
- handle.h
- noncopyable.h
- open_connection.h
- result.h
- runner.h
- schedule_task.h
- sleep.h
- start_server.h
- stream.h
- task.h
- void_value.h
- wait_for.h
- event_loop.cpp
- CMakeLists.txt
- sched_test.cpp
- CMakeLists.txt
- echo_client.cpp
- echo_server.cpp
- hello_world.cpp
- CMakeLists.txt
- counted.h
- result_test.cpp
- selector_test.cpp
- task_test.cpp
- CMakeLists.txt
- Catch2
- fmt
- nanobench
- .gitignore
- .gitmodules
- CMakeLists.txt
- LICENSE
- README.md
# Installation Guide
1. Get the code
git clone https://github.com/netcan/asyncio
Downloads the entire project code from GitHub to your computer.
cd asyncio
Moves into the project folder you just downloaded.
2. CMake
Medium RecommendedPrerequisites
$ cmake ..
Type this command into your terminal and run it.
Check that an executable was created inside the build folder, then run it directly (e.g. ./build/app_name).
Pulled directly from this repo's README.
// repository documentation
Was this content helpful?
(0 ratings)
