Programming Theory/코루틴(Coruotine)
kotlin Coroutine 정리(4, Coroutine Context and Dispatchers)
Coroutine Context and Dispatchers. 코루틴은 항상 어떠한 context 내에서 실행이 되는데, 이러한 context는 CoroutineContext type의 값에 의해 표현(represented)된다(이러한 타입은 kotlin standard library에 정의 되어 있음). Coroutine context는 다양한 요소(elements)의 집합이다. 주요한 요소는 coroutine의 Job이고(이전 장에 잠시 다룬 것이다), Job의 dispatcher이다. dispatcher은 이번 포스팅에서 자세히 다룬다. 먼저, 이번 페이지에서 살펴볼 목차는 아래와 같다(kotlinlang.org/docs/reference/coroutines/coroutine-context-and-..
2020. 9. 22. 09:23