Coroutine Scope 코루틴의 동작하는 범위를 규정. 스코프 내에서 실행되는 코루틴의 실행을 감시하거나 취소할 수 있다. GlobalScope 메인 스레드가 실행 중인 동안만 코루틴의 동작을 보장 앱의 생명주기와 함께 동작한다. 실행중에 별도의 생명주기 관리가 필요 없다. 예제 fun now() = ZonedDateTime.now().toLocalTime().truncatedTo(ChronoUnit.MILLIS) fun log(msg: String) = println("${now()} : ${Thread.currentThread()} : $msg") fun launchInGlobalScope() { GlobalScope.launch { log("coroutine started") } } Threa..