RKRequestQueue (RestKit) 如何保证下载顺序
我正在对一堆文件进行排队,并且想知道如何确保下载请求按顺序执行。
到目前为止,当对请求进行排队时,所有请求都是异步的,并且不会按顺序返回。
关于如何执行这一点有什么想法吗?
谢谢。
I'm queueing a bunch of files and was wondering how to ensure that the download requests are performed in ORDER.
So far, when queueing requests, all requests are async and don't come back in order.
Any ideas on how to enforce this?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
鉴于您使用默认的 RestKit 网络客户端,它使用 RKRequestQueue 来组织请求。该类具有名为concurrentRequestsLimit的属性。将其设置为 1 以强制执行顺序模式:
Given that you use the default RestKit network client, it uses the RKRequestQueue to organize the requests. This class has the property called concurrentRequestsLimit. Set it to one to enforce sequential mode: