1
vote
2answers
455 views
ThreadPool, QueueUserWorkItem and Deadlock on Shutdown
I just implemented a thread pool like described here
Allen Bauer on thread pools
Very simple implementation, works fine, but my application no longer shuts down. Seems that two w …
1
vote
3answers
92 views
Accessing Tomcat Internals from Servlet (or Filter)
I would like to get access to the Tomcat internal data from a servlet (or filter). In particular, I would like to read information about busy threads, from thread pool manager. So, …
6
votes
4answers
803 views
How to catch exceptions from a ThreadPool.QueueUserWorkItem?
I have the following code that throws an exception:
ThreadPool.QueueUserWorkItem(state => action());
When the action throws an exception, my program crashes. What is the bes …
2
votes
3answers
360 views
Exceptions on .Net ThreadPool Threads
Duplicate: How to catch exceptions from a ThreadPool.QueueUserWorkItem?
I am queueing up multiple delegates on the .Net ThreadPool for a large number of independant remoting ca …
1
vote
4answers
117 views
Exceptions on threadpool threads
Related:
How to catch exceptions from a ThreadPool.QueueUserWorkItem?
Exceptions on .Net ThreadPool Threads
If a method throws an exceptions that is called by the Thre …
0
votes
1answer
31 views
Request for SERVER prgm using THREADPOOL ,such that it accepts several clients and responding them with their respective response files
Hi Everyone, can i have code of serverprogram which accepts several client connections using THREADPOOL concept,where each client send a file to server and server should respond to …
0
votes
6answers
49 views
Limiting number of requests to a servlet
Hi,
We have a servlet which occupies more virtual memory on the server due to the logic it has. For this reason, we would like to limit the concurrent requests to this server say …
1
vote
4answers
133 views
C# lower thread priority in thread pool
Hello,
I have several low-imprtance tasks to be performed when some cpu time is available. I don't want this task to perform if other more import task are running. Ie if a normal/ …
1
vote
1answer
62 views
Tomcat thread pool usage schema
I'm developing servlet filter intended to manage some resources which should be available during servlet processing. Since I'm not very familiar with the Tomcat, I have some doubt. …
0
votes
1answer
50 views
.Net 2.0 & SQL Server 2008 Hanging Process
I created a simple .Net web service which runs a very simple query (which should normally be very quick). The query is something like this:
SELECT v.email
FROM dbo.Reporting r
I …
5
votes
6answers
720 views
Using ThreadPool.QueueUserWorkItem in ASP.NET in a high traffic scenario
I've always been under the impression that using the ThreadPool for (let's say non-critical) short-lived background tasks was considered best practice, even in ASP.NET, but then I …
2
votes
3answers
98 views
Too Many Threads Exception
I am facing problem in blackberry development. In my application I have to get images from the server, so i have to create a separate connection thread for each image i load from …
-1
votes
2answers
245 views
NSThread examples
hi
i want implement two thread in my iPhone application.
NSThread t1;
NSThread t2;
t1 doing one task. and t2 doing another one;
how it implement ?
pls help me .. if possible …
1
vote
2answers
113 views
Java email sending queue - fixed number of threads sending as many messages as are available
I'm writing a message processing application (email) that I want to have an outgoing queue. The way I've designed this is having a singleton queue class, ThreadedQueueSender, backe …
0
votes
1answer
172 views
System.Timers.Timer Elapsed taking 10 times longer to execute than a Button_click
I have a fairly process intensive method that takes a given collection, copies the items(the Item class has its Copy() method properly defined), populates the item with data and re …
