Concurrency with GCD in Swift - 1
Serial Queue:
Executes only one item at a time irrespective of the number of tasks in the Queue
Good when there is a necessity to provide controlled access to a queue
func serialQueue() {
let serialQueue = DispatchQueue(label: "test.com")
...
tech.radhakrishnan-s.co.uk3 min read