CX Framework
Cross-platform C utility framework
Loading...
Searching...
No Matches
tqmthreadpool.cxh
1#include "tqmanager.cxh"
2#include <cx/taskqueue/worker/tqthreadworker.cxh>
3
4class TQThreadPoolRunner;
5
6abstract class TQThreadPoolManager extends TQManager {
7 object:TQThreadPoolRunner runner;
8 uint32 lastcount;
9 int64 lastop;
10 int64 idlestart;
11
12 void updatePoolSize();
13 override start;
14 override tick;
15 override stop;
16}