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
- HashMap vs ArrayMap
- enum performance
- mitmproxy
- gitignore작성법
- 음량표준화
- Intent String 변환
- 오픈소스라이선스
- ArrayMap
- lufs
- Service관리
- gitignore
- APK 동적로딩
- 네트워크 디버깅
- callstack 출력
- corePoolSize
- print callstack
- convert string to intent
- MediaDataSource
- BlockingQueue Capacity
- java callstack
- Service 팁
- convert Intent to string
- android network
- Replaygain
- RxJava Programming
- APK로딩
- android enum
- so파일 동적로딩
- Dagger2란
- RxJava 스터디
Archives
- Today
- Total
목록corePoolSize (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