CCF
Loading...
Searching...
No Matches
thread_manager.h
Go to the documentation of this file.
1// Copyright (c) Microsoft Corporation. All rights reserved.
2// Licensed under the Apache 2.0 License.
3#pragma once
4
5#include "tasks/job_board.h"
6
7#include <memory>
8
9namespace ccf::tasks
10{
12 {
13 struct PImpl;
14 std::unique_ptr<PImpl> pimpl;
15
16 public:
17 ThreadManager(JobBoard& job_board_);
19
20 void set_task_threads(size_t new_worker_count);
21 };
22}
Definition job_board.h:15
Definition thread_manager.h:12
void set_task_threads(size_t new_worker_count)
Definition thread_manager.cpp:107
Definition basic_task.h:8
Definition thread_manager.cpp:14