As far as I understand non-main-queue GCD queues, they are serial by default only on devices with single-core CPUs. But if a device has multiple cores, it can happen that blocks in the queue get executed simultaneously.
I want to use a serial GCD queue to overcome some concurrency problems and this queue must be serial even if there are multiple cores.
A developer mentioned this is possible somehow. How would I create such a always-serial queue?
Standard GCD queues that can be obtained with dispatch_get_global_queue
function are concurrent indeed.
But you can create custom gcd queue using dispatch_queue_create function. Pass DISPATCH_QUEUE_SERIAL
as a second parameter to create that queue as serial.
To create concurrent queue: dispatch_queue_t concurrentQueue = dispatch_queue_create("com.aj.concurrent.queue", DISPATCH_QUEUE_CONCURRENT);
To create serial queue: dispatch_queue_t serialQueue = dispatch_queue_create("com.aj.serial.queue", DISPATCH_QUEUE_SERIAL);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With