liblw
liblw copied to clipboard
An asynchronous application framework built on C++ coroutines and epoll.
Results
8
liblw issues
Sort by
recently updated
recently updated
newest added
Future callback is not invoked if promise gets resolved before it was hooked: ```cpp Promise p; p.resolve(5); p.future().then([](auto a) { std::cout
Hi, I'm trying to create a lib for Async style Programing for Arduino. Wondering if you'd be okay for me to pull some ideas from this lib / if you...