现在,我遇到了一种情况,我正在从分离的线程(例如线程池)中启动多个请求。
我想使这些请求保持同步,因此它们将在完全相同的线程(而不是主线程)上启动和结束。
我尝试设置.observeOn(CurrentThreadScheduler.instance)
,但是由于响应处理程序线程始终是Main线程而不是当前线程。
是否可以将当前线程指定为响应的处理程序线程?
最佳答案
是否可以将当前线程指定为
响应?
有一种方法!看一下MoyaProvider
类。
/// Request provider class. Requests should be made through this class only.
open class MoyaProvider<Target: TargetType>: MoyaProviderType {
/// Propagated to Alamofire as callback queue. If nil - the Alamofire default (as of their API in 2017 - the main queue) will be used.
let callbackQueue: DispatchQueue?
/// Initializes a provider.
public init(..., callbackQueue: DispatchQueue? = nil, ...) {
...
self.callbackQueue = callbackQueue
}
}
您可以提供回调队列。只需提供所需的队列即可。