| 324 | // subscriber subscribe on |
| 325 | template <class T, concepts::SupportedSubscriber<T> TCallback> |
| 326 | void OpSub::SubscribeOn(const res::Subscriber<T>& ch, aimrt::executor::ExecutorRef exe, TCallback callback) { |
| 327 | DoSubscribe(ch, std::move(callback), std::move(exe)); |
| 328 | } |
| 329 | |
| 330 | // subscriber subscribe |
| 331 | template <class T, concepts::SupportedSubscriber<T> TCallback> |
no test coverage detected