xo-reactor: bugfix: track ns change xo::ref::rp -> xo::rp

This commit is contained in:
Roland Conybeare 2024-09-14 13:48:03 -05:00
commit aa40c8ac75
14 changed files with 20 additions and 26 deletions

View file

@ -64,7 +64,7 @@ namespace xo {
/* set .trace_sim_flag */
virtual void set_debug_sim_flag(bool x) = 0;
virtual CallbackId attach_sink(ref::rp<AbstractSink> const & sink) = 0;
virtual CallbackId attach_sink(rp<AbstractSink> const & sink) = 0;
virtual void detach_sink(CallbackId id) = 0;
/* endpoint for a websocket subscriber;
@ -92,7 +92,7 @@ namespace xo {
std::uint64_t deliver_all();
}; /*AbstractSource*/
using AbstractSourcePtr = ref::rp<AbstractSource>;
using AbstractSourcePtr = rp<AbstractSource>;
} /*namespace reactor*/
} /*namespace xo*/