Dan Vrátil
Dan Vrátil
Hi, I'm trying to get this plugin to work following the minimal example from the README, but I'm getting a `Cannot find module` error. `rollup.config.js` ``` import comlink from "@surma/rollup-plugin-comlink";...
It is desirable that coroutines can be cancelled from the outside. So far I came up with four possible solutions, each with their own set of advantages and drawbacks. ##...
I have already ran into a case in QCoro where being able to co_await multiple tasks in parallel would make the code simpler , and I think there's a lot...
### Discussed in https://github.com/danvratil/qcoro/discussions/102 Originally posted by **DeveloperPaul123** July 28, 2022 I noticed that some subclasses of `QIODevice` are supported such as `QLocalSocket`. Are there any plans to support `QSerialSocket`...
I was able to get qcoro compiled with ASAN using clang-cl, but the executables seem broken - they don't start - I suspect it could be the mix of Qt...
The CI is failing due to ASAN issues on Qt5/Windows. I currently have no means of debugging this issue locally, so ASAN is disabled on CI for Qt5 Windows for...
So far QCoro can only be used in C++ code. However, it should be possible to return `QCoro::Task` from a QObject's invokable method that can be called from QML. Unfortunately,...
Currently we use `#ifdef __clang__` to conditionally toggle code, even if the real reason for the toggle is libc++, rather than clang. We should throughly review all the ifdefs and...
Based on #44 it's clear we need to fix feature detection at config time. - [ ] Enable/disable QtDBus and QtNetwork support not purely based on platform `IFs` but rather...