RxCpp
The Reactive Extensions for Native (RxCpp) is a library for composing asynchronous and event-based programs using observable sequences and LINQ-style query operators in both C and C++.
|
If an error occurs, take the result from the Selector and subscribe to that instead. More...
#include "../rx-includes.hpp"
Go to the source code of this file.
Classes | |
struct | rxcpp::member_overload< on_error_resume_next_tag > |
Namespaces | |
rxcpp | |
rxcpp::operators | |
Macros | |
#define | RXCPP_OPERATORS_RX_ON_ERROR_RESUME_NEXT_HPP |
Functions | |
template<class... AN> | |
auto | rxcpp::operators::on_error_resume_next (AN &&... an) -> operator_factory< on_error_resume_next_tag, AN... > |
If an error occurs, take the result from the Selector and subscribe to that instead. More... | |
template<class... AN> | |
auto | rxcpp::operators::switch_on_error (AN &&... an) -> operator_factory< on_error_resume_next_tag, AN... > |
If an error occurs, take the result from the Selector and subscribe to that instead. More... | |
If an error occurs, take the result from the Selector and subscribe to that instead.
Selector | the actual type of a function of the form observable<T>(std::exception_ptr) |
s | the function of the form observable<T>(std::exception_ptr) |
#define RXCPP_OPERATORS_RX_ON_ERROR_RESUME_NEXT_HPP |