mirror of
https://github.com/ttttupup/wxhelper.git
synced 2025-04-20 03:49:17 +08:00
26 lines
541 B
C++
26 lines
541 B
C++
#ifndef WXHELPER_THREAD_POOL_H_
|
|
#define WXHELPER_THREAD_POOL_H_
|
|
#include "Windows.h"
|
|
#include "singleton.h"
|
|
namespace wxhelper {
|
|
|
|
class ThreadPool :public Singleton<ThreadPool>{
|
|
public:
|
|
~ThreadPool();
|
|
|
|
bool Create(unsigned long min = 1, unsigned long max = 4);
|
|
|
|
bool AddWork(PTP_WORK_CALLBACK callback,PVOID opt);
|
|
|
|
private:
|
|
void operator=(const ThreadPool&) = delete;
|
|
void operator=(ThreadPool&&) = delete;
|
|
|
|
PTP_POOL pool_;
|
|
PTP_CLEANUP_GROUP cleanup_group_;
|
|
TP_CALLBACK_ENVIRON env_;
|
|
};
|
|
|
|
} // namespace wxhelper
|
|
|
|
#endif |