aboutsummaryrefslogtreecommitdiff
path: root/src/zenhttp/servers/iothreadpool.h
blob: e75e95e585f2ac039ae5bf65f05de6e3b8ae8b14 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Copyright Epic Games, Inc. All Rights Reserved.

#pragma once

#include <zencore/zencore.h>

#if ZEN_PLATFORM_WINDOWS
#	include <zencore/windows.h>

#	include <system_error>

namespace zen {

class WinIoThreadPool
{
public:
	WinIoThreadPool(int InThreadCount, int InMaxThreadCount);
	~WinIoThreadPool();

	void		  CreateIocp(HANDLE IoHandle, PTP_WIN32_IO_CALLBACK Callback, void* Context, std::error_code& ErrorCode);
	inline PTP_IO Iocp() const { return m_ThreadPoolIo; }

private:
	PTP_POOL			m_ThreadPool   = nullptr;
	PTP_CLEANUP_GROUP	m_CleanupGroup = nullptr;
	PTP_IO				m_ThreadPoolIo = nullptr;
	TP_CALLBACK_ENVIRON m_CallbackEnvironment;
};

}  // namespace zen
#endif