Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- kubernetes
- Kotlin
- MSA
- Stress test
- 동기화
- 마이크로서비스
- 헬름
- cloud native
- 익명클래스
- ingress
- 머신러닝
- decorator 패턴
- Adapter 패턴
- spring microservice
- 클라우드 네이티브 자바
- nGrinder
- ansible
- 클라우드 네이티브
- 쿠버네티스
- java
- Semaphore
- cloud native java
- CRD
- 코틀린
- Microservice
- MySQL
- Algorithm
- Spring
- 자바
- devops
Archives
- Today
- Total
목록arrayChannel (1)
카샤의 만개시기
Kotlin Coroutine(코루틴) - Channel(채널)
채널은 넌블로킹 전송 개념으로 SendChannel과 ReceiveChannel 인터페이스를 이용해 값들의 스트림을 전송하는 방법을 제공합니다. fun main() = runBlocking { val channel = Channel() launch { // 여기에 다량의 CPU 연산작업이나 비동기 로직을 둘 수 있다. for (x in 1..5) channel.send(x * x) } // 5개의 값을 채널로부터 받는다 repeat(5) { println(channel.receive()) } println("Done!") launch { for (x in 1..5) channel.send(x * x) channel.close() // 모두 보내고 닫기 명시 } // for 루프를 사용해 끝까지 읽기 fo..
Kotlin
2019. 12. 14. 00:23