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 |
Tags
- corePoolSize
- 음량표준화
- ArrayMap
- RxJava Programming
- convert string to intent
- convert Intent to string
- mitmproxy
- lufs
- Replaygain
- HashMap vs ArrayMap
- APK 동적로딩
- android enum
- MediaDataSource
- Service관리
- BlockingQueue Capacity
- enum performance
- android network
- so파일 동적로딩
- APK로딩
- 네트워크 디버깅
- 오픈소스라이선스
- Dagger2란
- callstack 출력
- gitignore
- java callstack
- Service 팁
- Intent String 변환
- RxJava 스터디
- print callstack
- gitignore작성법
Archives
- Today
- Total
목록BlockingQueue Capacity (1)
일상&개발 로그
ThreadPoolExecutor에서 corePoolSize와 queue capacity의 관계
ThreadPoolExecutor는 ExecutorService를 상속받은 클래스로Task(Runnable)를 저장하는 BlockingQueue와 이를 수행하는 ThreadPoolSize를 설정할 수 있다. ThreadPoolExecutor 생성자에서 corePoolSize와 maximumPoolSize, BlockingQueue를 지정할 수 있는데,여기서 지정하는 BlockingQueue의 capacity가 unbound인 경우, threadPoolSize는 corePoolSize에서 늘어나지 않는다.구동되는 threadPool의 크기를 maximumPoolSize만큼 늘리려면 BlockingQueue의 capacitiy를 지정해 줘야한다.주의할 점은 capacity를 지정할 경우 corePoolSiz..
개발/개발 일반
2018. 8. 3. 16:29