-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTaskQueueThread.h
52 lines (36 loc) · 1012 Bytes
/
TaskQueueThread.h
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#pragma once
#include <queue>
#include "AutoLock.h"
typedef int FNCallBack(void *pParam);
typedef struct tagTask
{
FNCallBack *pFunc;
void* param;
}stTask, *LPTask;
//等增加任务类,可继承实现任务的取消甚至暂停继续等
class CTaskQueueThread
{
public:
CTaskQueueThread(LPCSTR szThreadName = nullptr);
CTaskQueueThread(FNCallBack *pFunc, void* param, bool bSingleTask = true, LPCSTR szThreadName = nullptr);
~CTaskQueueThread(void);
//返回值表示是否马上执行,即任务队列中只有当前一个任务
BOOL PushTask(FNCallBack *pFunc, void* param);
bool ClearTask(bool bExit = true);
BOOL Start();
void Terminate();
HANDLE GetThreadHandle();//可用于WaitForSingleObject
bool isRunning();
void Wait(); //等待线程结束
protected:
static unsigned int __stdcall Run(void *param);
void ExecuteTasks();
std::queue<stTask> m_queueFnCallBack;
CCriticalSection m_csQueueFnCallBack;
HANDLE m_hThread;
bool m_bSingleTask;
HANDLE m_hEvent;
bool m_bExit;
std::string m_strThreadName;
static int m_nID;
};