CHANNEL1 Coroutines - Channels https://kotlinlang.org/docs/reference/coroutines/channels.html Channels - Kotlin Programming Language kotlinlang.org 1. Basics Deffered value 는 코루틴 간 단일 값을 전송하고 Channel 은 값 스트림을 전송하는 방법을 제공한다 Channel 은 개념적으로 BlockingQueue 와 매우 유사하지만 put, take 대신 suspend send 와 receive 가 있다 val channel = Channel() launch { // this might be heavy CPU-consuming computation or async logic, we'll just send five squar.. 2020. 7. 30. 이전 1 다음