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 ...
2
votes
2answers
164 views

Windows Service not completely starting

I made this small windows service in c# and I believe I may have done something wrong with my ThreadPool code that prevents my Windows Service from completely starting. If you must know, the windows ...
1
vote
3answers
166 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
3answers
660 views

C# Thread Queue Synchronize

Greetings, I am trying to play some audio files without holding up the GUI. Below is a sample of the code: if (audio) { if (ThreadPool.QueueUserWorkItem(new WaitCallback(CoordinateProc), ...
1
vote
3answers
543 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
0answers
36 views

Can ThreadPool.QueueUserWorkItem execute on Main Thread?

I'm trying to tackle a weird issue on SL on the Mac in a multi-threaded application. My application employs the ThreadPool to queue various different work items. I have a method HandleRequest that is ...
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 ...
-1
votes
6answers
648 views

C# multi CPU for ThreadPool.QueueUserWorkItem

I have a program that uses: ThreadPool.QueueUserWorkItem(new WaitCallback(FireAttackProc), fireResult); On Windows7 and Vista it works fine. When I try to run it on XP the result is a bit ...