Top "Threadpool" questions

Pooling resources in given limits and automatically assign task to open workers.

How to configure a fine tuned thread pool for futures?

How large is Scala's thread pool for futures? My Scala application makes many millions of future {}s and I wonder …

multithreading scala parallel-processing threadpool future
WaitAll for multiple handles on a STA thread is not supported

Why do I get this error message? "WaitAll for multiple handles on a STA thread is not supported." Should I …

c# multithreading threadpool
ThreadPoolExecutor fixed thread pool with custom behaviour

i'm new to this topic ... i'm using a ThreadPoolExecutor created with Executors.newFixedThreadPool( 10 ) and after the pool is full i'm …

java multithreading threadpool threadpoolexecutor
How can I kill a pthread that is in an infinite loop, from outside that loop?

I create a thread and I put it into an infinite loop. I get memory leaks when checking the code …

c memory-leaks pthreads threadpool
Existing threadpool C implementation

What open-source implementation(s) in C for a pthreads thread pool would you recommend ? Additional points if this implementation is : …

c multithreading open-source pthreads threadpool
Java Thread Pool with a Bounded Queue

I'm using java.util.concurrent's Executors class to create a fixed thread pool for running request handlers for a web …

java multithreading threadpool
How to name the threads of a thread pool in Java

I have a Java application that uses the Executor framework and I have code that looks like this protected ScheduledExecutorService …

java multithreading threadpool executorservice
Ensuring task execution order in threadpool

I have been reading about the thread-pool pattern and I can't seem to find the usual solution for the following …

multithreading design-patterns concurrency threadpool
How do I manage ruby threads so they finish all their work?

I have a computation that can be divided into independent units and the way I'm dealing with it now is …

ruby multithreading threadpool
Multithreaded job queue manager

I need to manage CPU-heavy multitaskable jobs in an interactive application. Just as background, my specific application is an engineering …

c++ multithreading scheduled-tasks threadpool