如果CKQueryOperation
返回RequestRateLimited
错误,应该将相同的queryOperation添加到publicDatabase,还是应该基于接收到的游标创建新的queryOperation?如果发生RequestRateLimited
错误,客户端会收到光标吗?
@farktronix:
我执行得好吗,因为我遇到了错误(在模拟器中,互联网状况不佳)
-[NSOperationQueue addOperation:]:操作已完成,无法入队
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_BACKGROUND, 0), {
// ..other things
let qo = CKQueryOperation(query: query)
let qcb: (CKQueryCursor!, NSError!) -> () = {cursor, error in
if error == nil {
//.. some code
} else {
if error.code == CKErrorCode.RequestRateLimited.rawValue {
let retryAfter = error.userInfo![CKErrorRetryAfterKey] as! NSNumber
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, Int64(retryAfter.doubleValue * Double(NSEC_PER_SEC))), dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), {
publicDatabase.addOperation(qo) // <- HERE is it ok? I get an error
})
} else {
// .. some other code
}
}
}
qo.queryCompletionBlock = qcb
publicDatabase.addOperation(qo)
// .. other things ..
})
最佳答案
如果收到CKErrorRequestRateLimited
错误,则不应收到新的查询游标。
每当您收到速率限制错误时,您都可以在CKErrorRetryAfterKey
键下的userInfo词典中指定的时间过去之后,重试相同的操作。
关于ios - CKQueryOperation中的RequestRateLimited,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29836127/