kotlinx.coroutines icon indicating copy to clipboard operation
kotlinx.coroutines copied to clipboard

Library support for Kotlin coroutines

Results 367 kotlinx.coroutines issues
Sort by recently updated
recently updated
newest added
trafficstars

https://betterprogramming.pub/the-silent-killer-thats-crashing-your-coroutines-9171d1e8f79b raises a good point: `CancellationException` should indicate that the coroutine in which it is raised is cancelled, but it's not always actually the case: ```kotlin fun testFoo() { val...

design

**Describe the bug** After upgrading from version 1.6.4 to 1.7.1 (we have since bumped to 1.7.2) we started seeing `NullPointerException` crashes when updating a `StateFlow` value. I am not able...

bug
android

**Describe the bug** If you use Proguard on JVM (e.g. as part of a Compose/Desktop application as per [compose docs](https://github.com/JetBrains/compose-multiplatform/tree/master/tutorials/Native_distributions_and_local_execution#minification--obfuscation)), then the MainDispatcherFactory is removed. When the application runs, it...

docs

**Describe the bug** Firstly, it's possible this is expected behavior but it certainly doesn't seem that way. We have a flow that we collect using `first()`. This flow is a...

android

Hello maintainers, I see `DEFAULT_CONCURRENCY` marked with `DEFAULT_CONCURRENCY`, but `Flow.flattenMerge(concurrency: Int = DEFAULT_CONCURRENCY)` is not marked with `FlowPreview`. Is there any reason to keep `@FlowPreview` on `DEFAULT_CONCURRENCY`? Can we remove...

enhancement
flow

**Describe the bug** JaCoCo generates coverage reports for a function `invokeSuspend` on (invalid) `line="0"` in code that uses `flatMapLatest()` or `combine()`. This seems likely to be related to the convergence...

bug

**Describe the bug** FastLoader will fail in a way that loading the MainDispatcherFactory will appear missing despite being on the classpath. Kotlin 1.9.20-rc Compose 1.5.10-beta02 Java 20 Coroutines 1.7.3 **Provide...

bug

**Describe the bug** I'm trying to upgrade to v1.7.3 and add the modules to a module-info file but it seems that `kotlinx-coroutines-core` and `kotlinx-coroutines-core-jvm` cause a problem because they have...

bug

**Description:** I would like to request the addition of a new function, `scanNotNull`, to the Flow extension in the Kotlin Coroutines library. The `scanNotNull` function would allow folding of flow...

enhancement
flow

**Use case** We have specific dispatchers, and in coroutine dumps they all look like `LimitedDispatcher@xxxxxxxx`, and it's not immediately clear where the dispatcher comes from. **The Shape of the API**...

enhancement