Как отправить 3 запроса в секунду без таймера?
oq = OperationQueue.main
oq.maxConcurrentOperationCount = 1
oq.qualityOfService = .background
oqSession = URLSession(configuration: .default, delegate: self, delegateQueue: oq)
oqSession.dataTask(with: URL(...)!, completionHandler: { (data, response, error) in....