mergeWith

parentContext 作为基准、以当前 receiver 为主要结果合并两个 CoroutineContext, (也就是使用当前 context 覆盖 parentContext

例如:

CoroutineName("name1").mergeWith(CoroutineName("name2"))
// 结果:CoroutineName("name1")

在这过程中同样“合并”二者的 Job:

See also