| 318 | // subscriber subscribe inline |
| 319 | template <class T, concepts::SupportedSubscriber<T> TCallback> |
| 320 | void OpSub::SubscribeInline(const res::Subscriber<T>& ch, TCallback callback) { |
| 321 | DoSubscribe(ch, std::move(callback), {}); |
| 322 | } |
| 323 | |
| 324 | // subscriber subscribe on |
| 325 | template <class T, concepts::SupportedSubscriber<T> TCallback> |
no test coverage detected