Oded Niv
Oded Niv
Re `buffer`: The whole point of `buffer()` is to break that guarantee by buffering the collection. Its documentation states that it the emitter will not wait for the collector. Nobody...
The only backward incompatibility I can think of is if the user used to accidentally overwrite the same inner value. Previously it would just replace it (whether it's an `Array`,...
Hmm, bump? This is very useful and I don't think it's a very hard PR to consume...
Well I happen to use Jbuilder for building complex JSONs (not just views), specifically for Elasticsearch. The code generating the JSON is split into many functions in different models that...
@rwz any reason not to merge this?
So... I'm guessing this is not going in? FYI #332 (@melnikaite) also wanted it.
Why is this not pulled? It makes complete sense. (Calling a seemingly active collaborator) @rafaelfranca what do you think?
I now realize the Kotlin cancellation is synchronous, and any suspend functions called during the `catch (e: CancellationException) { ... }` will not really be executed when the job is...
Learning about `withContext(NonCancellable)`, I'd argue `invokeOnCancellation` should accept a `suspend` function that is executed with `withContext(NonCancellable)` as that's the exact use case - we need to allow suspension while also...