作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当客户端收到推送通知时,我会运行一些冗长的同步任务。如果 2 个通知到达太快,我会在同步任务之间发生冲突,因为两者都尝试枚举和更改 coredata。
如何保留对队列的引用并将下一个同步任务分派(dispatch)到同一个队列?为这个问题道歉,但我不擅长纯 C。谢谢。
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo
{
dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
// I would need to keep reference to 'queue' so I can dispatch to it again with next push notification
dispatch_async(queue, ^{
[self.connection synchronizeWithLocal];
dispatch_async(dispatch_get_main_queue(), ^{
// make UI updates
});
});
}
最佳答案
一个类可以有 dispatch_queue_t
属性(property)就像任何其他属性(property)一样。
@property (readwrite, assign) dispatch_queue_t myQueue;
self.myQueue = queue;
DISPATCH_QUEUE_PRIORITY_DEFAULT
是一个全局队列,这意味着
dispatch_queue_t queue = dispatch_queue_create("my queue", DISPATCH_QUEUE_SERIAL);
dispatch_release
进行清理。 .
关于ios - 如何在同一线程上调度异步以进行串行处理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20598650/
我是一名优秀的程序员,十分优秀!