Slide 31
Slide 31 text
© ZOZO, Inc.
31
CoroutineExceptionHandlerが呼ばれる流れ
StandaloneCoroutineの実装内でhandleCoroutineExceptionが呼ばれる
private open class StandaloneCoroutine(
parentContext: CoroutineContext,
active: Boolean
) : AbstractCoroutine(parentContext, initParentJob = true, active =
active) {
override fun handleJobException(exception: Throwable): Boolean {
handleCoroutineException(context, exception)
return true
https://cs.android.com/android/platform/superproject/main/+/main:external/kotlinx.coroutines/kotlinx-coroutines-core/common/src
/Builders.common.kt