GCD 란멀티코어 프로세서를 위한 Thread 프로그래밍을 Mac OS 에서 자동으로관리 / 분배해주는 C Library 이다. Serial Queue let queue = DispatchQueue.init(label: "serialQueue") for i in 1...5 { queue.async { Thread.sleep(forTimeInterval: 1) print("\(i)") } } Concurrent Queue let queue = DispatchQueue.init(label: "concurrentQueue", attributes: .concurrent) for i in 1...5 { queue.async { Thread.sleep(forTimeInterval: 1) print("\(i)") }..
결론Queue 의 동작과 Thread 와는 관계가 없다. dispatch_sync 로 실행했다면 실행한 Thread 에서,dispatch_async 로 실행했다면 WorkerThread 에서 동작한다. Queue type 이 SERIAL 인지 CONCURRENT 인지는 중요하지 않다. Test codeSerial 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..
- Total
- Today
- Yesterday
- Swift 3.0
- Block
- docker
- delegate
- applicationWillResignActive
- NSManagedObjectContext
- coredata
- Swift 3
- EffectiveObjectiveC
- dictionary
- AWS
- NSManagedObjectModel
- 꺼내먹어요
- optional
- Swift
- Swfit
- CGImage
- RunLoop
- NSManagedObject
- set
- 읽기 좋은 코드가 좋은 코드다
- ios
- workerThread
- HTTP
- Swift3
- string
- CIImage
- thread
- Arc
- UIView
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |