Add thread pool async I/O backend (#97)

* Add thread pool async I/O backend

* Make it work with older code
This commit is contained in:
2025-10-23 10:29:23 -07:00
committed by GitHub
parent 24fa3ef419
commit fa3541fe2d
4 changed files with 256 additions and 7 deletions

View File

@@ -24,6 +24,7 @@ namespace detail {
#if WIBO_ENABLE_LIBURING
std::unique_ptr<AsyncIOBackend> createIoUringBackend();
#endif
std::unique_ptr<AsyncIOBackend> createThreadPoolBackend();
} // namespace detail