|
| bool | rxcpp::schedulers::operator== (const worker &lhs, const worker &rhs) |
| |
| bool | rxcpp::schedulers::operator!= (const worker &lhs, const worker &rhs) |
| |
| template<class Scheduler , class... ArgN> |
| scheduler | rxcpp::schedulers::make_scheduler (ArgN &&...an) |
| |
| scheduler | rxcpp::schedulers::make_scheduler (std::shared_ptr< scheduler_interface > si) |
| |
| action | rxcpp::schedulers::make_action_empty () |
| |
| template<class F > |
| action | rxcpp::schedulers::make_action (F &&f) |
| |
| auto | rxcpp::schedulers::make_schedulable (const schedulable &scbl) -> schedulable |
| |
| auto | rxcpp::schedulers::make_schedulable (schedulable &&scbl) -> schedulable |
| |
| schedulable | rxcpp::schedulers::make_schedulable (worker sc, action a) |
| |
| schedulable | rxcpp::schedulers::make_schedulable (worker sc, composite_subscription cs, action a) |
| |
| template<class F > |
| auto | rxcpp::schedulers::make_schedulable (worker sc, F &&f) -> typename std::enable_if< detail::is_action_function< F >::value, schedulable >::type |
| |
| template<class F > |
| auto | rxcpp::schedulers::make_schedulable (worker sc, composite_subscription cs, F &&f) -> typename std::enable_if< detail::is_action_function< F >::value, schedulable >::type |
| |
| template<class F > |
| auto | rxcpp::schedulers::make_schedulable (schedulable scbl, composite_subscription cs, F &&f) -> typename std::enable_if< detail::is_action_function< F >::value, schedulable >::type |
| |
| template<class F > |
| auto | rxcpp::schedulers::make_schedulable (schedulable scbl, worker sc, F &&f) -> typename std::enable_if< detail::is_action_function< F >::value, schedulable >::type |
| |
| template<class F > |
| auto | rxcpp::schedulers::make_schedulable (schedulable scbl, F &&f) -> typename std::enable_if< detail::is_action_function< F >::value, schedulable >::type |
| |
| auto | rxcpp::schedulers::make_schedulable (schedulable scbl, composite_subscription cs) -> schedulable |
| |
| auto | rxcpp::schedulers::make_schedulable (schedulable scbl, worker sc, composite_subscription cs) -> schedulable |
| |
| auto | rxcpp::schedulers::make_schedulable (schedulable scbl, worker sc) -> schedulable |
| |