Menu
What is GCD? Grand Central Dispatch was developed by Apple in order to simplify work with systems with multi-core processors and released with Mac OS X Snow Leopard and iOS 4. GCD’s task parallelism is based on the thread pool pattern. Multiple threads are always available — waiting for tasks to be executed concurrently. Since […]