3
votes
1answer
86 views
C# - ThreadPool vs Tasks
Hello,
As some may have seen in .NET 4.0, They've added a new namespace System.Threading.Tasks which basically is what is means, a task. I've only been using it for a few days, fr …
3
votes
2answers
67 views
.Net How to create a custom ThreadPool shared across all the AppDomain of a process?
I made a custom ThreadPool optimized for my specific needs. However, when there are multiple AppDomains in the process, the CLR ThreadPool is able to be shared across all the AppDo …
0
votes
5answers
50 views
Threadpool is getting used by windows service problem
Hi Guys,
I have created a windows service which is currently having three timers. First timer is waking up every 15 sec, second timer is waking every min. and the third timer is wa …
0
votes
2answers
35 views
Using ThreadPool threads with long running ADO.NET queries. Is this scalable?
We are currently enhancing an ASP.NET app that performs quotes on a number of products.
At present the existing quote engine is basically a big stored procedure (2-3 secs per call …
1
vote
5answers
82 views
Is this a right case for using the Threadpool?
Here's the setup: I'm trying to make a relatively simple Winforms app, a feed reader using the FeedDotNet library. The question I have is about using the threadpool. Since FeedDotN …
0
votes
2answers
27 views
how threadpool behaves under asp.net request processing
we have a scenario where in whil serving one asp.net request from iis from our code we have created a child thread from thread pool to servve some background task.the idea was to f …
0
votes
1answer
47 views
ThreadPool.RegisterWaitForSingleObject for Compact Framework?
I must port a project to the compact framework. And can not convert to
ThreadPool.RegisterWaitForSingleObject
(WaitHandle, WaitOrTimerCallback,
object, int, bool)
What m …
0
votes
1answer
72 views
problem in boost threadpool library
hi,
I want to use the boost threadpool library from open source(http://threadpool.sourceforge.net/) I am getting an complilation error with the example program itself.
/usr/incl …
4
votes
7answers
68 views
Removing all queued tasks of an ThreadPoolExecutor
Hi StackOverflow,
i have this rather simple question about the ThreadPoolExecutor. I have the following situation: I have to consume objects from a queue, create the appropiate wo …
0
votes
0answers
22 views
Has anyone used SmartThreadPool of Ami Bar and can share his/her experience with it?
Dear ladies and sirs.
I am looking into alternative ThreadPool implementations and have found the SmartThreadPool implementation by Ami Bar. It looks very interesting, so my quest …
2
votes
6answers
163 views
How can I continuously QueueUserWorkItems but without queuing them all at once?
I'm working on a multi-threaded scraper for a website and as per a different question I've decided to use the ThreadPool with QueueUserWorkItem().
How can I continually Queue work …
0
votes
1answer
33 views
Async calls from methods already running in threadpool
Hi,
I am sorry for the title but I really do not know how to better describe it. I am using threadpool for processing incoming data on the server side and in one method I would nee …
0
votes
1answer
137 views
How to use thread pool in WebLogic 8?
How is it possible to get/use/return a thread from an execute queue ( = thread pool) in WebLogic 8.1.6?
2
votes
4answers
93 views
How to localize string resource lookups from all threads in an application?
The recommended best practice is to set the current culture of the application's thread to enable resource look ups to use the correct language.
Unfortunately, this does not set t …
0
votes
1answer
35 views
Efficiently handling timed events in a server
In my case I've got a game server, with the CLR threadpool handling the sockets, and a managed threadpool for the other stuff. I'm trying to figure out what the best way to handle …
