What is the analog of RxJava onErrorResumeNext operator in RxSwift?

Viewed 1512

I need to emit a sequence of items if it encounters an error in RxSwift. In JAVA it can be done with "onErrorResumeNext" operator. But I can not find the same operator or its substitute in Swift.

1 Answers
Related