LeviLamina
Loading...
Searching...
No Matches
ThreadPool.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace OS { struct ThreadPoolActionStatus; }
8// clang-format on
9
10namespace OS {
11
13public:
14 // member variables
15 // NOLINTBEGIN
17 // NOLINTEND
18
19public:
20 // prevent constructor by default
21 ThreadPool& operator=(ThreadPool const&);
22 ThreadPool(ThreadPool const&);
23
24public:
25 // member functions
26 // NOLINTBEGIN
27 MCNAPI long Initialize(void* context, void (*callback)(void*, ::OS::ThreadPoolActionStatus&));
28
29 MCNAPI void Submit();
30
31 MCNAPI void Terminate();
32
33 MCNAPI ThreadPool();
34
35 MCNAPI ~ThreadPool();
36 // NOLINTEND
37
38public:
39 // constructor thunks
40 // NOLINTBEGIN
41 MCNAPI void* $ctor();
42 // NOLINTEND
43
44public:
45 // destructor thunk
46 // NOLINTBEGIN
47 MCNAPI void $dtor();
48 // NOLINTEND
49};
50
51} // namespace OS
Definition ThreadPool.h:12
MCAPI void Submit()
MCAPI void Terminate()
MCAPI void * $ctor()
MCAPI long Initialize(void *context, void(*callback)(void *, ::OS::ThreadPoolActionStatus &))
MCAPI void $dtor()
MCAPI ~ThreadPool()
MCAPI ThreadPool()
Definition ThreadPoolActionStatus.h:7
Definition context.h:5
Definition Alias.h:14