Tagged Questions

3
votes
6answers
231 views

C# Can I pass more than one data into my target method when using ThreadPool?

use ThreadPool.QueueUserWorkItem (WaitCallback, Object) to start a thread with my target method and data. Can I pass more than one data into my method? the second parameter in QueueUserWorkItem ...
1
vote
3answers
42 views

Informing ThreadPool.QueueUserWorkItem about memory requirements

We are designing an application where users can set multiple tasks running simultaneously. We use ThreadPool.QueueUserWorkItem to set the tasks running. That part runs well. We do have a problem ...
1
vote
3answers
165 views

SOLVED Threadpool in C# too slow, is there a way to speed up it? Thread.Sleep(0) and QueueUserWorkItem issues

I am using Threadpool in a C# application that need to do some CPU-intensive work. By the way it seems too slow (EDIT: it prints out debug string "Calculating on " + lSubArea.X + ":" + ...
1
vote
1answer
711 views

Windows Threading: beginthread or QueueUserWorkItem (C++)

I am wondering whether to use beginthread or QueueUserWorkItem for threaded methods in C++. What are the differences between the two APIs and in what context are they better suited? Thanks, BTW, I ...
1
vote
3answers
541 views

Am I using ThreadPool.QueueUserWorkItem properly?

I am working on a ASP.NET MVC app. I wanted to spawn few threads when a event occurs, I dont care for the return value of my threads and I wanted to make a async call so I am using ...
0
votes
3answers
137 views

My threadspool just make 4~5threads. why?

I use QueueUserWorkItem() function to invoke threadpool. And I tried lots of work with it. (about 30000) but by the task manager my application only make 4~5 thread after I push the start button. I ...
0
votes
3answers
234 views

One reader, many writers

Related: How to catch exceptions from a ThreadPool.QueueUserWorkItem? I am catching exceptions in background threads started by ThreadPool.QueueUserWorkItem(), and propagating them to the main thread ...