1 namespace Qore::Thread {
59 constructor(
int max = 0,
int minidle = 0,
int maxidle = 0, timeout release_ms = 5s);
108 submit(code task, *code cancel);
any max(list l)
Returns the maximum value in a list.
constructor(int max=0, int minidle=0, int maxidle=0, timeout release_ms=5s)
creates the pool with the given parameters; idle threads are started immediately if necessary ...
This class defines a thread pool that grows and shrinks dynamically within user-defined limits accord...
Definition: QC_ThreadPool.dox.h:41
destructor()
destroys the pool; any task threads are detached; to wait for all task threads to complete...
stop()
stops the thread pool and returns immediately; after this method has been executed once no more tasks...
stopWait()
stops the thread pool and does not return until all child threads have also been stopped; after this ...
submit(code task, *code cancel)
submit a task to the pool
string toString()
returns a description of the ThreadPool