Daniil Ovchinnikov

Results 70 comments of Daniil Ovchinnikov

> we can't check MMR anymore Because Valve closed this API, right?

That's why I came here :) Since it's not possible to get MMR via official APIs, could you please add an input field near each ranked match, so the user...

> Without any data verification I'm not sure we shouldn't store this data server-side since we won't know whether it's accurate. Yes. That's why I've proposed that it should not...

I'd be happy with `stage` or `span` or whatever name it might have if it will be a part of the coroutines library. This way it can be used to...

In IJ we have own unlimited executor (let's call it `ApplicationPool`). We log a thread dump when the number of threads exceeds a certain value, but we don't prevent spawning...

I'm not sure what title to give to this issue, there are several interlinked problems. - one cannot `launch` a supervisor coroutine; - the `Job` in the context is used...

If emitter does not suspend waiting for collectors, then I don't understand why `SharedFlow.emit` has `suspend` modifier.

in IJ I was going to replace our listener mechanism (lots of weird code, see `com.intellij.util.messages.impl.MessageBusImpl`) with a single `MutableSharedFlow()` because - it's possible to suspend in collectors; - a...

As I was mentioning, collectors are expected to `suspend`. Also, I don't expect the immediate execution, I only expect `emit` to suspend until all collectors are run. Also, `Unconfined` is...

We have use cases for this in IJ and would be very glad to see this in the library. 1. In IJ we provide extension points, each plugin/module can register...