Error handling operators Operators that help to recover from error notifications from an Observable. More...
Functions | |
template<rpp::details::resume_callable ResumeCallable> requires is_header_included<on_error_resume_next_tag, ResumeCallable> | |
auto | observable::on_error_resume_next (ResumeCallable &&resume_callable) const & |
Recover from an on_error notification by continuing the sequence without error. | |
Error handling operators Operators that help to recover from error notifications from an Observable.
|
inline |
Recover from an on_error notification by continuing the sequence without error.
The operator intercepts an on_error
notification from the source Observable and, instead of passing it through to any observers, replaces it with some other item or sequence of items.
Actually this operator just subscribes on observable calculated from callback when on_error
from original observable obtained.
resume_callable | A callable that is given an error pointer and shall return an Observable. |