LeviLamina
Loading...
Searching...
No Matches
WorkerPoolManager.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/utility/EnableNonOwnerReferences.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace Bedrock { class WorkerPoolHandleInterface; }
11namespace Bedrock::Threading { class OSThreadPriority; }
12// clang-format on
13
14namespace Bedrock {
15
17 public ::Bedrock::ImplBase<::Bedrock::WorkerPoolManager> {
18public:
19 // virtual functions
20 // NOLINTBEGIN
21 // vIndex: 1
22 virtual void init() = 0;
23
24 // vIndex: 2
25 virtual ::std::shared_ptr<::Bedrock::WorkerPoolHandleInterface> createWorkerPool(
26 ::std::string,
27 uint64,
29 ::std::optional<uint64> const,
30 bool,
31 ::std::optional<int> const
32 ) = 0;
33
34 // vIndex: 3
35 virtual void tick() = 0;
36
37 // vIndex: 0
38 virtual ~WorkerPoolManager() /*override*/;
39 // NOLINTEND
40
41public:
42 // destructor thunk
43 // NOLINTBEGIN
44 MCFOLD void $dtor();
45 // NOLINTEND
46
47public:
48 // virtual function thunks
49 // NOLINTBEGIN
50
51 // NOLINTEND
52};
53
54} // namespace Bedrock
Definition EnableNonOwnerReferences.h:7
Definition _HeaderOutputPredefine.h:198
Definition OSThreadPriority.h:7
Definition WorkerPoolManager.h:17