We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
기본형 활용 쓰레드를 만들고 관리하는 것은 어려운 부분 중 하나이다. 언제 쓰레드를 만들 것인가? 얼마나 많은 쓰레드를 만드는 것인가? CPU bound, I/O bound 처리의 쓰레드들을 어떻게 관리할 것인가?
쓰레드를 만들고 관리하는 것은 어려운 부분 중 하나이다.
kotlin 에서 CPU bound 작업을 위한 Thread Pool 이다.
코루틴 간에 데이터를 안전하게 보내고 받는 데 사용할 수 있는 파이프
Coroutine Pool
Channel 과 Coroutine 의 Wrapper
Critical Zone 을 정의해 한 번에 하나의 쓰레드만 실행할 수 있도록 하는 동기화 메커니즘
The text was updated successfully, but these errors were encountered:
No branches or pull requests
CommonPool
kotlin 에서 CPU bound 작업을 위한 Thread Pool 이다.
Channel
코루틴 간에 데이터를 안전하게 보내고 받는 데 사용할 수 있는 파이프
Worker pool
Coroutine Pool
Actor
Channel 과 Coroutine 의 Wrapper
Mutex
Critical Zone 을 정의해 한 번에 하나의 쓰레드만 실행할 수 있도록 하는 동기화 메커니즘
The text was updated successfully, but these errors were encountered: