What is dispatch_get_global_queue in swift 4

hi
what is dispatch_get_global_queue(QOS_CLASS_BACKGROUND,0) in swift 4

https://developer.apple.com/documentation/dispatch/dispatchqueue

let queue = DispatchQueue.global(qos: .background)

1 Like

thanks :heart: