dispatchGroup.notify(队列:从当前上下文继承QOS
dispatchGroup.notify(queue: inheriting QOS from the current context
有没有办法 dispatchGroup.notify(queue: 从当前上下文继承 QOS?(假设有 IS qos 元信息拖过所有上下文开始)
.unspecified 的文档看起来很简洁:至少我没能理解它。
有,notify(qos:flags:queue:execute:)
, you can specify .inheritQoS
:
group.notify(flags: .inheritQoS, queue: queue) {
...
}
有没有办法 dispatchGroup.notify(queue: 从当前上下文继承 QOS?(假设有 IS qos 元信息拖过所有上下文开始) .unspecified 的文档看起来很简洁:至少我没能理解它。
有,notify(qos:flags:queue:execute:)
, you can specify .inheritQoS
:
group.notify(flags: .inheritQoS, queue: queue) {
...
}