I am using Moya with RxSwift and I am trying to set the request timeout for the network call (API Calls) using below code as suggested :
which is including the custom Alamofire Manager when declaring your Provider
lazy var provider: RxMoyaProvider<CAPProviderAPI> = {
return RxMoyaProvider<CAPProviderAPI>(endpointClosure: Utility.getEndPointClosure(forProviderType: .authorized), manager: DefaultAlamofireManager.sharedManager, plugins: [NetworkActivityPlugin(networkActivityClosure: networkActivityClosure)])
}()
but I am getting an error saying : Use of unresolved identifier 'networkActivityClosure'
I would like to share with you the way I did it. It might not answer your question, but it shows the way to achieve the desired behavior using RxSwift operators.
I have some function which accepts timeout parameter and makes a request:
Inside this function I transform timeout to
Observable
this way:If the timeout takes place - I need to cancel the request. I have made some
flatMapLatest
analogue which also accepts a cancel signal:As a result, the request function will work this way: