코루틴 컨텍스트 (CoroutineContext)Job 계층의 생명 주기를 연결하기 위해 사용코루틴 컨텍스트 구현체// kotlin.coroutines.CoroutineContext.class@kotlin.SinceKotlin public interface CoroutineContext { public abstract operator fun get(key: kotlin.coroutines.CoroutineContext.Key): E? public abstract fun fold(initial: R, operation: (R, kotlin.coroutines.CoroutineContext.Element) -> R): R public open operator fun plus(context..