我想知道是否有办法使用新的 Apple 框架实现重新连接机制结合和使用 URLSession 发布者
- 试图在 WWDC 2019 中找到一些例子
- 试图玩
waitsForConnectivity
没有运气(它甚至没有在自定义会话上调用委托) - 尝试过
URLSession.background
,但在发布过程中崩溃了。
我也不明白我们如何以这种方式跟踪进度
是否有人已经尝试过这样做?
upd:
似乎在 Xcode 11 Beta 中waitsForConnectivity
不起作用
upd2:
Xcode 11 GM -waitsForConnectivity
正在工作,但仅在设备上。使用默认会话,设置标志并实现会话委托。task is waiting for connectivity
无论您是否使用带有回调的初始化任务,都会调用方法。
public class DriverService: NSObject, ObservableObject {
public var decoder = JSONDecoder()
public private(set) var isOnline = CurrentValueSubject<Bool, Never>(true)
private var subs = Set<AnyCancellable>()
private var base: URLComponents
private lazy var session: URLSession = {
let config = URLSessionConfiguration.default
config.waitsForConnectivity = true
return URLSession(configuration: config, delegate: self, delegateQueue: nil)
}()
public init(host: String, port: Int) {
base = URLComponents()
base.scheme = "http"
base.host = host
base.port = port
super.init()
// Simulate online/offline state
//
// let pub = Timer.publish(every: 3.0, on: .current, in: .default)
// pub.sink { _ in
// let rnd = Int.random(in: 0...1)
// self.isOnline.send(rnd == 1)
// }.store(in: &subs)
// pub.connect()
}
public func publisher<T>(for driverRequest: Request<T>) -> AnyPublisher<T, Error> {
var components = base
components.path = driverRequest.path
var request = URLRequest(url: components.url!)
request.httpMethod = driverRequest.method
return Future<(data: Data, response: URLResponse), Error> { (complete) in
let task = self.session.dataTask(with: request) { (data, response, error) in
if let err = error {
complete(.failure(err))
} else {
complete(.success((data!, response!)))
}
self.isOnline.send(true)
}
task.resume()
}
.map({ $0.data })
.decode(type: T.self, decoder: decoder)
.eraseToAnyPublisher()
}
}
extension DriverService: URLSessionTaskDelegate {
public func urlSession(_ session: URLSession, taskIsWaitingForConnectivity task: URLSessionTask) {
self.isOnline.send(false)
}
}