Skip to content

Instantly share code, notes, and snippets.

@deadb0d4
deadb0d4 / cppcoro-with-asio.cpp
Created October 5, 2025 16:05 — forked from isergeyam/cppcoro-with-asio.cpp
Using cppcoro with asio
#include <boost/asio.hpp>
#include <cppcoro/schedule_on.hpp>
#include <cppcoro/single_consumer_event.hpp>
#include <cppcoro/sync_wait.hpp>
#include <cppcoro/task.hpp>
#include <cppcoro/when_all.hpp>
#include <cstdlib>
#include <iostream>
#include <memory>
#include <utility>