Sync 썸네일형 리스트형 Dispatch Queue 앱 작업을 비동기식으로 수행할 수 있는 GCD 추상화 계층이다. 작업은 항상 queue에 추가된 순서대로 실행된다. Serial, Concurrent serial queue (하나의 스레드) serial dispatch queue는 한 번에 하나의 작업만 수행한다. race condition이 발생하지 않도록 특정 값이나 자원에 대한 액세스를 동기화하는데 사용된다. let serialQueue = DispatchQueue(label: "serial.queue") concurrent queue (여러 개의 스레드) On our system, you achieve concurrency by creating threads. concurrent queue는 동시에 여러 가지 작업을 수행할 수 있다. 들어오는 대.. 더보기 이전 1 다음