I am using RxJava CombineLatest with two observables. My question is, will the combine onNext called if one of the observables ends with onError?
The documentation shows happy scenario when both observables emits items properly but I couldn't find what will happens on error case.
|----onError ----| Observable1
|----------- O ------- O ------| Observable2
|--------------?----------?----| CombineLatest - will onNext will be called?