Last active
November 2, 2024 15:47
-
-
Save kean/e2bc38106d19c249c04162714e7be321 to your computer and use it in GitHub Desktop.
Revisions
-
kean revised this gist
Jan 10, 2021 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -21,7 +21,7 @@ extension ObservableType { shouldRetry: @escaping (Error) -> Bool = { _ in true }) -> Observable<E> { return retryWhen { (errors: Observable<Error>) in return errors.enumerated().flatMap { attempt, error -> Observable<Void> in guard maxAttemptCount > attempt + 1, shouldRetry(error) else { return .error(error) } -
kean revised this gist
Dec 25, 2017 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -50,7 +50,7 @@ extension DelayOptions { case .constant(let time): return time case .exponential(let initial, let multiplier, let maxDelay): // if it's first attempt, simply use initial delay, otherwise calculate delay let delay = attempt == 1 ? initial : initial * pow(multiplier, Double(attempt - 1)) return min(maxDelay, delay) case .custom(let closure): return closure(attempt) } -
kean renamed this gist
Dec 25, 2017 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
kean revised this gist
Dec 25, 2017 . 1 changed file with 38 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,38 @@ // The MIT License (MIT) // // Copyright (c) 2017 Alexander Grebenyuk (github.com/kean). import Foundation import Alamofire import RxSwift import RxCocoa final class Reachability { static var shared: Reachability { return AppContainer.shared.reachability } /// Monitors general network reachability. let reachability = NetworkReachabilityManager() var didBecomeReachable: Signal<Void> { return _didBecomeReachable.asSignal() } private let _didBecomeReachable = PublishRelay<Void>() init() { self.isReachable = _isReachable.asDriver() if let reachability = self.reachability { reachability.listener = { [weak self] in self?.update($0) } reachability.startListening() } } private func update(_ status: NetworkReachabilityManager.NetworkReachabilityStatus) { if case .reachable = status { _didBecomeReachable.accept(()) } } } -
kean created this gist
Dec 25, 2017 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,58 @@ // The MIT License (MIT) // // Copyright (c) 2017 Alexander Grebenyuk (github.com/kean). import Foundation import RxSwift import RxCocoa extension ObservableType { /// Retries the source observable sequence on error using a provided retry /// strategy. /// - parameter maxAttemptCount: Maximum number of times to repeat the /// sequence. `Int.max` by default. /// - parameter didBecomeReachable: Trigger which is fired when network /// connection becomes reachable. /// - parameter shouldRetry: Always retruns `true` by default. func retry(_ maxAttemptCount: Int = Int.max, delay: DelayOptions, didBecomeReachable: Signal<Void> = Reachability.shared.didBecomeReachable, shouldRetry: @escaping (Error) -> Bool = { _ in true }) -> Observable<E> { return retryWhen { (errors: Observable<Error>) in return errors.enumerated().flatMap { attempt, error -> Observable<Void> in guard shouldRetry(error), maxAttemptCount > attempt + 1 else { return .error(error) } let timer = Observable<Int>.timer( RxTimeInterval(delay.make(attempt + 1)), scheduler: MainScheduler.instance ).map { _ in () } // cast to Observable<Void> return Observable.merge(timer, didBecomeReachable.asObservable()) } } } } enum DelayOptions { case immediate() case constant(time: Double) case exponential(initial: Double, multiplier: Double, maxDelay: Double) case custom(closure: (Int) -> Double) } extension DelayOptions { func make(_ attempt: Int) -> Double { switch self { case .immediate: return 0.0 case .constant(let time): return time case .exponential(let initial, let multiplier, let maxDelay): // if it's first attempt, simply use initial delay, otherwise calculate delay let delay = attempt == 1 ? initial : initial * pow(1 + multiplier, Double(attempt - 1)) return min(maxDelay, delay) case .custom(let closure): return closure(attempt) } } }