| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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
- Java
- buildconfigfield
- Andorid
- data binding
- arm-linux-androideabi
- Jetpack
- EditText
- 3rd framework
- 3rd part
- xcframework
- Compose
- boot
- Framework
- ndkVersion
- Registering an InstanceCreator with Gson for this type may fix this problem
- Eclipse
- Chat GPT
- mac
- VM arguments
- Kotlin
- Android
- retrofit
- AOS
- IOS
- NDK
- defaultconfig
- gradle
- BindingAdapter
- DispatchQueue
- Swift
Archives
- Today
- Total
grape
[iOS]DispatchQueue.global 본문
apple devloment
https://developer.apple.com/documentation/dispatch/dispatchqos
// 유저와 직접 응답형 : UI관련
DispatchQueue.global(qos: .userInteractive)
// 비동기 처리 : 내부 데이터베이스 조회 등
DispatchQueue.global(qos: .userInitiated)
// 일반적인 작업
DispatchQueue.global()
// ProgressIndicator와 함께 지속적으로 사용되는 작업 : 지속적인 데이터 feed, Networking
DispatchQueue.global(qos: .utility)
// 사용자가 직접적으로 인지하지 않는 부분 : 데이터베이스 유지, 데이터 정리 등 - 속도보다는 에너지 효율성 중시
DispatchQueue.global(qos: .background)
// 사용하지 않음 absence of a quality-of-service API
DispatchQueue.global(qos: .unspecified)