-
Bug
-
Resolution: Fixed
-
Not Evaluated
-
None
-
6.9.1
-
None
I'd like to be able to do something like:
auto future = asyncOp().then(myQObject, [this](int res){ return anotherAsyncOp(res); }).then(myQObject, [this](float res){ ...});
asyncOp and anotherAsyncOp returns a QFuture<T>.
See the attached example for more info.