Vsevolod Tolstopyatov

Results 304 comments of Vsevolod Tolstopyatov

Great proposal! Unfortunately we are just don't have any capacity for additional activities right now and it is hard to tell whether we are ready to review and/or accept it....

Thanks for a detailed write-up with a self-contained example. This is definitely a design issue that we have to solve when working on #2092. Alas, I do not know a...

`runBlocking` **blocks** the thread, but while doing so, it progress all the coroutines that have been dispatched to this `runBlocking` loop. Otherwise, with structured concurrency, any non-trivial use of `runBlocking`...

>Is that impossible because they could still deadlock? Indeed. We've added it as part of https://github.com/Kotlin/kotlinx.coroutines/issues/860 The core problem with `runBlocking` that works in a non-cooperative way (e.g. does not...

>So how would you suggest calling a suspending API in a blocking way that wouldn't co-operate with the outer event loop? No idea honestly, never give it a proper thought....

Hi, Could you please show few examples of `raceOf` from a real-world project? I remember discussing at some point, but AFAIR we haven't found any compelling use-cases for that

Hi, >can we always turn on coroutine debug(if the overhead is minimal) for at least coroutine listing/stacktrace >if the overhead is minimal The "minimal" and "acceptable" overhead is a *very*...

Thanks for the report. I'll try to figure out what this `ComposeSingletons` is and whether it actually constitutes public ABI and will return here with the news. It may be...