Lines Matching defs:notification
116 struct notification struct
118 typedef typename detail::notification_base<T>::type type;
119 typedef typename detail::notification_base<T>::observer_type observer_type;
122 typedef detail::notification_base<T> base;
124 struct on_next_notification : public base {
148 struct on_error_notification : public base {
173 struct on_completed_notification : public base {
191 struct exception_tag {};
195 type make_on_error(exception_tag&&, Exception&& e) { in make_on_error()
200 struct exception_ptr_tag {};
203 type make_on_error(exception_ptr_tag&&, rxu::error_ptr ep) { in make_on_error()
209 static type on_next(U value) { in on_next()
213 static type on_completed() { in on_completed()
218 static type on_error(Exception&& e) { in on_error()