ios - RxSwift RetryWhen 导致重入异常

标签 ios swift rx-swift reactivex

我一直在尝试在 RxSwift 上测试 retryWhen 运算符,但遇到了 Reentrancy Anomaly 问题,这是代码:

Observable<Int>.create { observer in
    observer.onNext(1)
    observer.onNext(2)
    observer.onNext(3)
    observer.onNext(4)
    observer.onError(RequestError.dataError)
    return Disposables.create()
    }
    .retryWhen { error in
        return error.enumerated().flatMap { (index, error) -> Observable<Int> in
        let maxRetry = 1
        print("index: \(index)")
        return index < maxRetry ? Observable.timer(1, scheduler: MainScheduler.instance) : Observable.error(RequestError.tooMany)
        }
    }
    .subscribe(onNext: { value in
        print("This: \(value)")
    }, onError: { error in
        print("ERRRRRRR: \(error)")
    })
    .disposed(by: disposeBag)

上面的代码给出了:

This: 1
This: 2
This: 3
This: 4
index: 0
This: 1
This: 2
This: 3
This: 4
index: 1
⚠️ Reentrancy anomaly was detected.
  > Debugging: To debug this issue you can set a breakpoint in /Users/tony.lin/Documents/Snippet/MaterialiseTest/Pods/RxSwift/RxSwift/Rx.swift:97 and observe the call stack.
  > Problem: This behavior is breaking the observable sequence grammar. `next (error | completed)?`
    This behavior breaks the grammar because there is overlapping between sequence events.
    Observable sequence is trying to send an event before sending of previous event has finished.
  > Interpretation: This could mean that there is some kind of unexpected cyclic dependency in your code,
    or that the system is not behaving in the expected way.
  > Remedy: If this is the expected behavior this message can be suppressed by adding `.observeOn(MainScheduler.asyncInstance)`
    or by enqueing sequence events in some other way.

⚠️ Reentrancy anomaly was detected.
  > Debugging: To debug this issue you can set a breakpoint in /Users/tony.lin/Documents/Snippet/MaterialiseTest/Pods/RxSwift/RxSwift/Rx.swift:97 and observe the call stack.
  > Problem: This behavior is breaking the observable sequence grammar. `next (error | completed)?`
    This behavior breaks the grammar because there is overlapping between sequence events.
    Observable sequence is trying to send an event before sending of previous event has finished.
  > Interpretation: This could mean that there is some kind of unexpected cyclic dependency in your code,
    or that the system is not behaving in the expected way.
  > Remedy: If this is the expected behavior this message can be suppressed by adding `.observeOn(MainScheduler.asyncInstance)`
    or by enqueing sequence events in some other way.

ERRRRRRR: tooMany

只是想知道是否有人知道这个问题的原因?

最佳答案

正如控制台评论所解释的那样,可以使用 .observeOn(MainScheduler.asyncInstance) 来抑制此警告,如下所示:

Observable<Int>.from([1, 2, 3, 4]).concat(Observable.error(RequestError.dataError))
    .observeOn(MainScheduler.asyncInstance) // this is the magic that makes it work.
    .retryWhen { error in
        return error.enumerated().flatMap { (index, error) -> Observable<Int> in
            let maxRetry = 1
            print("Index:", index)
            guard index < maxRetry else { throw RequestError.tooMany }
            return Observable.timer(1, scheduler: MainScheduler.instance)
        }
    }
    .subscribe(onNext: { value in
        print("This: \(value)")
    }, onError: { error in
        print("ERRRRRRR: \(error)")
    })

我冒昧地对您的示例代码进行了一些小的调整,以展示另一种编写您所拥有内容的方法。

附加信息

您要求解释 (a) 为什么添加 ObserveOn 有效以及 (b) 为什么需要它。

.observeOn(MainScheduler.asyncInstance) 所做的是将请求路由到备用线程,在那里事件可以完成,然后在主线程上再次发出事件。换句话说,就像这样做:

.observeOn(backgroundScheduler).observeOn(MainScheduler.instance)

backgroundScheduler 的定义如下:

let backgroundScheduler = SerialDispatchQueueScheduler(qos: .default)

至少这是我的理解。

至于为什么需要它,我不能说。您可能在库中发现了一个错误,因为在没有 observeOn 的情况下使用 1 秒延迟也能正常工作。

关于ios - RxSwift RetryWhen 导致重入异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54859977/

相关文章:

ios - Swift 将 AnyObserver 绑定(bind)到 Observable

Webview 中的 iOS 键盘样式?

ios - UITableView 多选和滑动操作

ios - 如何使用Webview点击并下载文件

xcode - Xcode 7 中的 UI 测试 : Selecting a row number in a UIPickerView/PickerWheel

swift - 在 API 调用期间从服务器获取错误消息

rx-swift - 如何使用BehaviorRelay作为RxSwift中变量的替代品?

iphone - UIView 的 -drawRect 是否为 : have to be called on the main thread?

ios - 从不同 View Controller 添加 3D 对象时,Swift ARKit SceneView nil

swift - 同时查询解析服务器和本地数据存储