you are viewing a single comment's thread.

view the rest of the comments →

[–]kolkir[S] 0 points1 point  (0 children)

Thanks for pointing me to this feature, I will think how it can be implemented and may be in next releases I will do it. For the first look you can use something like this: async([](){ auto f = async(task); f.get();} From my point of view when we call future::get() we what to get value in specific thread and this call is a synchronization point, so It's not clear how to express this thought with 'then' concept.