| 123 | } |
| 124 | |
| 125 | std::shared_ptr<concurrencpp::thread_executor> runtime::thread_executor() const noexcept { |
| 126 | return m_thread_executor; |
| 127 | } |
| 128 | |
| 129 | std::shared_ptr<concurrencpp::worker_thread_executor> runtime::make_worker_thread_executor() { |
| 130 | auto executor = std::make_shared<worker_thread_executor>(); |
no outgoing calls