티스토리 뷰
결론
Queue 의 동작과 Thread 와는 관계가 없다.
dispatch_sync 로 실행했다면 실행한 Thread 에서,
dispatch_async 로 실행했다면 WorkerThread 에서 동작한다.
Queue type 이 SERIAL 인지 CONCURRENT 인지는 중요하지 않다.
Test code
Serial Queue
dispatch_queue_t serialQueue = dispatch_queue_create("serial", DISPATCH_QUEUE_SERIAL);
dispatch_sync(serialQueue, ^{
NSLog(@"serialQueue_sync : %@", [NSThread isMainThread] ? @"YES" : @"NO");
//YES
});
dispatch_async(serialQueue, ^{
NSLog(@"serialQueue_async : %@", [NSThread isMainThread] ? @"YES" : @"NO");
//NO
});
Concurrent Queue (Global Queue)
dispatch_queue_t concurrentQueue = dispatch_queue_create("concurrent", DISPATCH_QUEUE_CONCURRENT);
dispatch_sync(concurrentQueue, ^{
NSLog(@"concurrentQueue_sync : %@", [NSThread isMainThread] ? @"YES" : @"NO");
//YES
});
dispatch_async(concurrentQueue, ^{
NSLog(@"concurrentQueue_async : %@", [NSThread isMainThread] ? @"YES" : @"NO");
//NO
});
'iOS 개발 > iOS' 카테고리의 다른 글
[iOS] NSURLSession 에 대한 이해 (0) | 2017.05.23 |
---|---|
[iOS] dispatch_group_notify 의 사용법 (0) | 2017.04.28 |
[iOS] Carthage 의 장점 및 사용법 (0) | 2017.02.01 |
[iOS] 코드 사이닝 (프로비저닝 프로파일, 인증서) (2) | 2016.12.22 |
[iOS] TextKit 의 사용 (탐지 및 글씨 제외영역 잡기) (0) | 2016.12.02 |
- Total
- Today
- Yesterday
- Swift3
- EffectiveObjectiveC
- set
- NSManagedObjectContext
- string
- 꺼내먹어요
- workerThread
- ios
- CGImage
- dictionary
- thread
- Swift
- Swift 3.0
- UIView
- docker
- CIImage
- NSManagedObjectModel
- coredata
- NSManagedObject
- RunLoop
- Block
- AWS
- optional
- Swift 3
- HTTP
- 읽기 좋은 코드가 좋은 코드다
- applicationWillResignActive
- Swfit
- delegate
- Arc
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |