| 33 | |
| 34 | template<typename T> |
| 35 | void on_next(T&& v) const |
| 36 | { |
| 37 | onNext(utils::as_const(v)); |
| 38 | observer.on_next(std::forward<T>(v)); |
| 39 | } |
| 40 | |
| 41 | void on_error(const std::exception_ptr& err) const |
| 42 | { |
nothing calls this directly
no outgoing calls
no test coverage detected