Signal-iOS/SignalMessaging/Views/CVUtils.swift
2020-12-10 12:44:13 -03:00

19 lines
503 B
Swift

//
// Copyright (c) 2020 Open Whisper Systems. All rights reserved.
//
import Foundation
public class CVUtils {
@available(*, unavailable, message: "use other init() instead.")
private init() {}
public static let workQueue: DispatchQueue = {
// Note that we use the highest qos.
DispatchQueue(label: "org.whispersystems.signal.conversationView",
qos: .userInteractive,
autoreleaseFrequency: .workItem)
}()
}