netcan/asyncio

Compatability with cppcoro

Opened this issue · 2 comments

Hello,

Great library, thanks for your work. I have a question regarding using the other coroutine types found in https://github.com/andreasbuhr/cppcoro with asyncio. Is there a lot of work being able to support these? I am a bit naive as to how this works as I have only very briefly looked over the code in both libs.

Cheers,

Russ

netcan commented

cppcoro and asyncio are two different style projects. this project is designed for learning C++ coroutine features, some ideas were borrowed from cppcoro.

Mainly I was interested in async_auto_reset_event and the shared_task types. Okay so I will have to port them to asyncio.