CoroutineLite icon indicating copy to clipboard operation
CoroutineLite copied to clipboard

Simple implementation of kotlinx.coroutines to clarify the design of Kotlin Coroutines.

Results 3 CoroutineLite issues
Sort by recently updated
recently updated
newest added

![image](https://user-images.githubusercontent.com/13531074/124001159-ed403880-da06-11eb-976b-603ab7ad519e.png) 在等待子job完成的途中取消父job,如果不加红框中的代码,会导致子job取消失败

bug

当一个协程发生了异常应当立即取消其子协程,而不是还在等子协程结束再向parent抛异常

bug

我看到项目里没有引入 package kotlin.coroutines 怎么用到 Continuation 类的? implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8" 包括 coroutines吗?