| 59 | |
| 60 | public: |
| 61 | explicit thread_pool(size_t threads_count = std::thread::hardware_concurrency()) |
| 62 | : m_state{std::make_shared<state>(threads_count)} |
| 63 | { |
| 64 | } |
| 65 | |
| 66 | rpp::schedulers::worker<worker_strategy> create_worker() const |
| 67 | { |
nothing calls this directly
no outgoing calls
no test coverage detected