convenience init(label: String,
                 qos: DispatchQoS = .unspecified,
                 attributes: DispatchQueue.Attributes = [],
                 autoreleaseFrequency: DispatchQueue.AutoreleaseFrequency = .inherit,
                 target: DispatchQueue? = nil)

1️⃣ label

let derrickDispatchQueue = DispatchQueue(label: "derrick")

2️⃣ qos

3️⃣ attributes

import Foundation

let yellow = DispatchWorkItem {
    for _ in 1...5 {
        print("😀😀😀😀😀")
        sleep(1)
    }
}

let myDispatch = DispatchQueue(label: "Odong", attributes: .initiallyInactive)

myDispatch.async(execute: yellow) // 코드 블록 호출 안됨.
myDispatch.activate()

4️⃣ autoreleaseFrequency