gpt4 book ai didi

ios - NSURLSessionDownloadTask 在挂起时继续下载

转载 作者:行者123 更新时间:2023-11-28 06:19:44 25 4
gpt4 key购买 nike

我正在使用 NSURLSessionDownloadTask 下载文件。在应用程序的某一时刻,有必要暂停下载一小段时间,然后再继续下载。我尝试使用暂停方法暂停下载,但任务继续下载。 NSURLSessionTask 方法暂停状态的 Apple 文档:

A task, while suspended, produces no network traffic and is not subject to timeouts. A download task can continue transferring data at a later time. All other tasks must start over when resumed.

这似乎表明我做的是对的,但结果却不尽如人意。我能够在 Playground 中使用以下代码重现它。

import UIKit

let backgroundSessionConfiguration = URLSessionConfiguration.background(withIdentifier: "some-identifier")
let backgroundSession = Foundation.URLSession(configuration: backgroundSessionConfiguration, delegate: nil, delegateQueue: nil)

let request = URLRequest(url: URL(string: "http://google.com")!)
let task = backgroundSession.downloadTask(with: request)

task.state.rawValue

task.resume()
task.state.rawValue

task.suspend()
task.state.rawValue

sleep(10)

task.state.rawValue

任务状态的预期结果将是1、0、1、1(0 - 下载,1 - 暂停,2 - 取消,3 - 完成)。实际结果是 1, 0, 1, 3。这意味着虽然任务被挂起,但它仍然会继续下载并在下载完成后将自己标记为完成。

app中的设置比较复杂,任务状态不能一直复制(在Playground中结果似乎总是一样)但是暂停任务后的结果总是文件下载成功(包括进度回调被调用)。

问题:难道我做错了什么?我是否误解了 Apple 文档并且无法以这种方式暂停下载任务?

当我在应用程序中遇到这个问题时,我的第一个直觉是我在其他地方调用 resume 导致下载继续,但在调试代码后情况似乎并非如此 + Playground 的发现支持这一点出色地。

最佳答案

可能不是您要找的答案,但 Apple Dev Relations 代表有 confirmed in their dev forums在某些情况下,使用 suspend 可以真正暂停后台下载:

[...] a suspended task can still be active on the wire; all that the suspend does is prevent it making progress internally, issuing callbacks, and so on.

他们继续建议使用 cancel(byProducingResumeData:) 代替:

if you're implementing a long-term pause (for example, the user wants to pause a download), you'd be better off calling -cancelByProducingResumeData:.

关于ios - NSURLSessionDownloadTask 在挂起时继续下载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44001939/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com