DEV Community

Discussion on: C# Pause a Thread - Wait For An Event To Happen - Continue Thread

Collapse
 
rickystam profile image
Ricky Stam

Hi @lordwabbit actually the main thread of the console is listening to a queue and based on some conditions it create jobs that need to be executed in a sequential order. The only way I could know that a job was finished was listening on the JobFinished event. That is the reason I used ManualResetEventSlim and Background Threads for the process.

I can agree that the example was not very successful since I could not reproduce the whole real life case I dealt with.

I am always open for suggestions :)

Thread Thread
 
lordwabbit profile image
LordWabbit

But everything is sequential. You wait for input, determine if it should be processed, create a series of tasks to perform which need to be executed in order, and then execute them in order. The creation of threads just complicates the process with absolutely no benefit. It's not even taking advantage of multiple CPU's. If you were going to execute entire sets of jobs at the same time from the queue then the threading would need to be higher in the architecture. But I suppose if it was just to test some proof of concept code then it doesn't really matter. I would just like to mention that the reason I even brought it up is that I have a horrible habit of over engineering, so I tend to keep an eye out for it in my own code. Sometimes KISS is actually better.

Thread Thread
 
thompcd profile image
Corey Thompson

The point of the article isn't to solve every instantiation of this problem. He intentionally slimmed down his class so that you can see the pattern and determine whether you should use the same pattern in your own use case.

Thanks @rickystam , I have a UI app where I am implementing it successfully. :)

Thread Thread
 
rickystam profile image
Ricky Stam

I am really happy I could help :)