In Swift, why is a custom serial queue with a global queue as its target not executed concurrently?
Advertisements This is my first question here, so please be nice. I struggle to understand the dynamics around a queue’s target in Swift: I have read that a custom queue inherits the behaviour of its target queue. In the example below, concurrentQueue has its attribute set to .concurrent. But because its target queue is DispatchQueue.main,… Read More In Swift, why is a custom serial queue with a global queue as its target not executed concurrently?