Top "Threadpool" questions

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

What is the use of a Thread pool in Java?

What is the use of a Thread pool? Is there a good real world example?

java multithreading threadpool
ThreadPool.QueueUserWorkItem with a lambda expression and anonymous method

Passing two parameters to a new thread on the threadpool can sometimes be complicated, but it appears that with lambda …

c# multithreading lambda anonymous-methods threadpool
How to use a goroutine pool

I want to use Go for downloading stock price spreadsheets from Yahoo finance. I'll be making an http request for …

go threadpool goroutine
100 threads TIMED_WAITING in tomcat, causing it to stall as total number of threads crosses 200

Recently one of our production tomcat server became unresponsive because tomcat's busy threads shot upto 200. When we took thread dump …

java multithreading tomcat threadpool thread-dump
What are the differences between event-driven and thread-based server system?

Node.js is an event driven I/O and It's a single threaded server that acts upon callbacks and never …

multithreading node.js threadpool event-driven
Creating a dynamic (growing/shrinking) thread pool

I need to implement a thread pool in Java (java.util.concurrent) whose number of threads is at some minimum …

java multithreading threadpool
Should i use ThreadPools or Task Parallel Library for IO-bound operations

In one of my projects that's kinda an aggregator, I parse feeds, podcasts and so from the web. If I …

c# multithreading task-parallel-library threadpool parallel-extensions
Exception handling in ThreadPools

I have a ScheduledThreadPoolExecutor that seems to be eating Exceptions. I want my executor service to notify me if a …

java exception-handling threadpool
How to force terminate all workers in ThreadPoolExecutor immediately

I have a number of tasks inside a TheadPoolExecutor. I have a stop button on my interface that should terminate …

java multithreading threadpool threadpoolexecutor
Cross-thread operation not valid in Windows Forms

Could anyone help me i have a problem I'm trying to get this code to work in the background via …

c# winforms ftp threadpool invoke