Files
Woka_Native_iOS/WOKA/Network Adapter/QueueHelper.swift
BilalKhanWDI 3de76138fc - Added the network library with proper versioning
- Made the network adapter
- Made the config file to hold the url auth
2024-05-07 11:12:59 +05:30

26 lines
697 B
Swift

//
// File.swift
// WOKA
//
// Created by MacBook Pro on 06/05/24.
//
import Foundation
/*
this are the predefined queuehelper
modify as required
*/
class QueueHelper {
static let queue = DispatchQueue(label: "com.simpliTend")
static let queueHome = DispatchQueue(label: "com.simpliTend.home")
static let group = DispatchGroup()
static let group2 = DispatchGroup()
static let group3 = DispatchGroup()
static let background = DispatchQueue.global(qos: .background)
static let utilityGroup = DispatchQueue.global(qos: .utility)
static let userInteractive = DispatchQueue.global(qos: .userInteractive)
static let semaphore = DispatchSemaphore(value: 1)
}