such that if the last Single is an error, then the...
# rx
g
such that if the last Single is an error, then the
.doOnError
of upstream Singles will be invoked
b
Couldn’t you do something like
Copy code
Single.just(true)
  .flatMap {
    Single.just(true)
     .flatMap {
        Single.just(true)
      }
    }.onError ...
}