| 84 | |
| 85 | private: |
| 86 | const aimrt_executor_base_t* GetExecutor(aimrt_string_view_t executor_name) const { |
| 87 | auto finditr = executor_proxy_map_.find(aimrt::util::ToStdStringView(executor_name)); |
| 88 | if (finditr != executor_proxy_map_.end()) return finditr->second->NativeHandle(); |
| 89 | |
| 90 | AIMRT_WARN("Can not find executor '{}'.", aimrt::util::ToStdStringView(executor_name)); |
| 91 | |
| 92 | return nullptr; |
| 93 | } |
| 94 | |
| 95 | static aimrt_executor_manager_base_t GenBase(void* impl) { |
| 96 | return aimrt_executor_manager_base_t{ |
no test coverage detected