vote up 4 vote down star
3

I have data that needs to be executed on a certain background thread. I have code coming from all other threads that need to call into this. does anyone have a good tutorial or best practice on having a queue for synchronization to support this threading requirement

flag

6 Answers

vote up 1 vote down check

You could either:

link|flag
vote up 1 vote down

This is an interesting article on ThreadPools:

http://www.codeproject.com/KB/threads/smartthreadpool.aspx

For simpler use cases you could also use .Net's own ThreadPool class.

link|flag
vote up 0 vote down

One of my favorite solutions to this problem is similar to the producer/consumer pattern.

I create a master thread (pretty much my programs Main()) which holds a blocking queue object.

This master thread spins off several worker threads which simple pop things off the central blocking thread and process them. Since it's a threadsafe blocking queue, the synchronization bits are easy--the TaskQueue.Dequeue() call will block until a task is enqueued by the producer/main thread.

You can dynamically manage the number of workers you want or fix it according to a configuration variable--since they're all just popping things off the queue, the number of workers doesn't add any complexity.

In my case, I have a service which processes several different types of "tasks". I have the queue typed to handle something generic like "TaskQueueTask". Then I subclass that and override the "Execute()" method.


I've also tried the .NET threadpool approach where in you can throw things into the pool very easily. It was extremely simple to use but also provided little control, and no guarantee of execution order, timing, etc. It's recommended only for light-weight tasks.

link|flag
Here's a blocking queue: eggheadcafe.com/articles/20060414.asp – Michael Haren Dec 6 '08 at 14:23
vote up 2 vote down

Check out Threading in C#, by Joseph Albahari, very complete reference about multithreading. In particular, he covers producer/consumer queues.

link|flag
vote up 0 vote down

I posted an example of using a blocking queue at http://untweaked.wordpress.com/2009/01/07/blockingqueue

link|flag
vote up 0 vote down

You can try this solution. It shows you how to implement the producer-consumer pattern. Has also some explanation on what can be done with it. Like different combinations of the number of producers and consumers.

http://devpinoy.org/blogs/jakelite/archive/2009/01/12/threading-patterns-the-producer-consumer-pattern.aspx

http://devpinoy.org/blogs/jakelite/archive/2009/02/03/threading-patterns-producer-consumer-pattern-examples.aspx

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.