3.x rename on error resume next methods to disambiguate when calling from kotlin (#6551)#6556
Merged
akarnokd merged 5 commits intoReactiveX:3.xfrom luis-cortes:3.x-Rename-onErrorResumeNext-methods-to-disambiguate-when-calling-from-Kotlin-(#6551)Jul 4, 2019
Commits
Commits on Jul 3, 2019
ReactiveX#6551 Renaming Observable.onErrorResumeNext to Observable.onErrorResumeWith, removing unnecessary cast from null tests, and updating Observable.onErrorResumeWith's JavaDoc to reference cor…
committedReactiveX#6551 Renaming Maybe.onErrorResumeNext(MaybeSource) to Maybe.onErrorResumeWith(MaybeSource), renamed some of the affected unit tests, and updated JavaDoc.
committedReactiveX#6551 Renaming Single.onErrorResumeNext(Single) to Single.onErrorResumeWith(Single), renamed an affected unit test, updated JavaDoc, and removed redundant casts.
committedReactiveX#6551 Changing Single.onErrorResumeWith parameter from Single<? extends T> to SingleSource<? extends T>
committedReactiveX#6551 Renaming Flowable.onErrorResumeNext(Publisher) to Flowable.onErrorResumeWith(Publisher), renaming some affected tests, deleted duplicated unit test that arose from being able to remo…
committed