|
12
|
|
|
In addition to Barrier, pointed out by Henk Holterman (which BTW his is a very bad usage of Barrier, see my comment to his answer), .NET 4.0 provides whole bunch of other options (to use this them in .NET 3.5 you need to download an extra DLL from Microsoft). Here's a quick survey: First of all, you can use CountdownEvent, which works almost just like Barrier: flagFinish = new CountdownEvent(2); <=== INITIALIZING COUNT. .. queue processing to the thread pool ......proceed with the rest of your logic...void DoSomething(string someString){ ... do some processing... flagFinish.Decrement(); <== WORKER THREADS SIGNAL WHEN DONEAccording to Joe Duffy (the famous multithreading guru from Microsoft whose lecture at PDC 08 I learned this from) CountdownEvent was specifically created to simplify scatter/gather scenarios. Now, in your case, when the list of objects to be processed is an array, blogged a better way than queuing to the thread poolpost that lists them all, but my favorite is to use Parallel.For from the same library, like so: Parallel.For(0, arrayStrings.Length - 1 , delegate(int i) DoSomething(arrayStrings(i));Finally, checkout definitely Parallel.ForEachfor even higher-level semantics: Behind the scenes, Parallel For and ForEach queue Parallel.ForEach queues to the new and improved thread pool and wait waits until all threads are done. --- EDIT ----Two more ways are described in this post on Parallels Extensions team blog. One is to use Parallel.Invoke: var actions = new List<Action>();foreach(var someString in arrayStrings) actions.Add(() => DoSomething(someString));Another one is to use the new Task class: var tasks = new List<Task>();foreach(var someString in arrayStrings) tasks.Add(Task.Factory.StartNew(() => DoSomething(someString));As you can see, the options are many. Depending on the problem at hand and how much control your solution requires, you may prefer one option over the other. For this particular problem I would prefer Parallel.ForEach as it most clearly and concisely expresses the intention of the code.
|
|
|
|
11
|
|
|
In addition to Barrier, pointed out by Henk Holterman (which is a very bad usage of Barrier, see my comment to his answer), .NET 4.0 provides whole bunch of other options (to use this in .NET 3.5 you need to download an extra DLL from Microsoft). Here's a quick survey:
First of all, you can use CountdownEvent, which works almost just like Barrier:
flagFinish = new CountdownEvent(2); <=== INITIALIZING COUNT
... queue processing to the thread pool ...
flagFinish.Wait();
...proceed with the rest of your logic...
...
void DoSomething(string someString){
... do some processing...
flagFinish.Decrement(); <== WORKER THREADS SIGNAL WHEN DONE
}
According to Joe Duffy (the famous multithreading guru from Microsoft whose lecture at PDC 08 I learned this from) CountdownEvent was specifically created to simplify scatter/gather scenarios.
Now, in your case, when the list of objects to be processed is an array, a better way than queuing to the thread pool, is to use Parallel.For from the same library, like so:
Parallel.For(0, arrayStrings.Length - 1 , delegate(int i)
{
DoSomething(arrayStrings(i));
});
Finally, checkout Parallel.ForEach for even higher-level semantics:
Parallel.ForEach<string>(arrayStrings, someString =>
{
DoSomething(someString);
});
Behind the scenes, Parallel For and ForEach queue to the new and improved thread pool and wait until all threads are done.
--- EDIT ----
Two more ways are described in this post on Parallels Extensions team blog.
One is to use Parallel.Invoke:
var actions = new List<Action>();
foreach(var someString in arrayStrings)
{
actions.Add(() => DoSomething(someString));
}
Parallel.Invoke(actions.ToArray());
Another one is to use the new Task class:
var tasks = new List<Task>();
foreach(var someString in arrayStrings)
{
tasks.Add(Task.Factory.StartNew(() => DoSomething(someString));
}
Task.WaitAll(tasks.ToArray());
As you can see, the options are many. Depending on the problem at hand and how much control your solution requires, you may prefer one option over the other. For this particular problem I would prefer Parallel.ForEach as it most clearly and concisely expresses the intention of the code.
|
|
|
|
10
|
|
|
To begin with In addition to Barrier, you can use CountdownEvent like so: pointed out by Henk Holterman, .NET 4.0 provides whole bunch of other options (to use this in .NET 3.5 you need to download an extra DLL from Microsoft, more details here). Here's a quick survey:
First of all, you can use CountdownEvent, which works almost just like Barrier:
flagFinish = new CountdownEvent(2); <=== INITIALIZING COUNT
... queue processing to the thread pool ...
flagFinish.Wait();
...proceed with the rest of your logic...
...
void DoSomething(string someString){
... do some processing...
flagFinish.Decrement(); <== WORKER THREADS SIGNAL WHEN DONE
}
According to Joe Duffy (the famous multithreading guru from Microsoft whose lecture at PDC 08 I learned this from) CountdownEvent was specifically created to simplify scatter/gather scenarios.
Now, in your case, when the list of objects to be processed is an array, a better way than queuing to the thread pool, is to use Parallel.For from the same library, like so:
Parallel.For(0, arrayStrings.Length - 1 , delegate(int i)
{
DoSomething(arrayStrings(i));
});
Finally, checkout Parallel.ForEach for even higher-level semantics:
Parallel.ForEach<string>(arrayStrings, someString =>
{
DoSomething(someString);
});
Behind the scenes, Parallel For and ForEach queue to a the new and improved thread pool and wait until all threads are done.
--- EDIT ----
Two more ways are described in this post on Parallels Extensions team blog.
One is to use Parallel.Invoke:
var actions = new List<Action>();
foreach(var someString in arrayStrings)
{
actions.Add(() => DoSomething(someString));
}
Parallel.Invoke(actions.ToArray());
Another one is to use the new Task class:
var tasks = new List<Task>();
foreach(var someString in arrayStrings)
{
tasks.Add(Task.Factory.StartNew(() => DoSomething(someString));
}
Task.WaitAll(tasks.ToArray());
As you can see, the options are many. Depending on the problem at hand and how much control your solution requires, you may prefer one option over the other. For this particular problem I would prefer Parallel.ForEach as it most clearly and concisely expresses the intention of the code.
|
|
|
|
9
|
|
|
To begin with, you can use CountdownEvent like so: (to use this in .NET 3.5 you need to download an extra DLL from Microsoft, more details here)
flagFinish = new CountdownEvent(2); <=== INITIALIZING COUNT
... queue processing to the thread pool ...
flagFinish.Wait();
...proceed with the rest of your logic...
...
void DoSomething(string someString){
... do some processing...
flagFinish.Decrement(); <== WORKER THREADS SIGNAL WHEN DONE
}
According to Joe Duffy (the famous multithreading guru from Microsoft whose lecture at PDC 08 I learned this from) CountdownEvent was specifically created to simplify scatter/gather scenarios.
Now, in your case, when the list of objects to be processed is an array, a better way than queuing to the thread pool, is to use Parallel.For from the same library, like so:
Parallel.For(0, arrayStrings.Length - 1 , delegate(int i)
{
DoSomething(arrayStrings(i));
});
Finally, checkout Parallel.ForEach for even higher-level semantics:
Parallel.ForEach<string>(arrayStrings, someString =>
{
DoSomething(someString);
});
Behind the scenes, Parallel For and ForEach queue to a thread pool and wait until all threads are done.
--- EDIT ----
Two more ways are described in this post on Parallels Extensions team blog.
One is to use the new Task objectParallel.Invoke:
Task taskHello
var actions = Task.Factory.StartNew(hello);
Task taskWorld new List<Action>();
foreach(var someString in arrayStrings)
{
actions.Add(() =Task.Factory.StartNew(world)> DoSomething(someString));
Task.WaitAll(taskHello, taskWorld)}
Parallel.Invoke(actions.ToArray());
Another one is to do Parallel.Invokeuse the new Task class:
Action hello
var tasks = (new List<Task>();
foreach(var someString in arrayStrings)
=> {
Console.Write("Hello"); };
Action world = (tasks.Add(Task.Factory.StartNew(() => { Console.Write("World")DoSomething(someString));
}
Task.WaitAll(tasks.ToArray());
Parallel.Invoke(hello
As you can see the options are many. Depending on the problem at hand and how much control your solution requires, world);
you may prefer one option over the other. For this particular problem I would prefer Parallel.ForEach as it most clearly and concisely expresses the intention of the code.
|
|
|
|
8
|
|
|
To begin with, you can use CountdownEvent like so: (to use this in .NET 3.5 you need to download an extra DLL from Microsoft, more details here)
flagFinish = new CountdownEvent(2); <=== INITIALIZING COUNT
... queue processing to the thread pool ...
flagFinish.Wait();
...proceed with the rest of your logic...
...
void DoSomething(string someString){
... do some processing...
flagFinish.Decrement(); <== WORKER THREADS SIGNAL WHEN DONE
}
According to Joe Duffy (the famous multithreading guru from Microsoft whose lecture at PDC 08 I learned this from) CountdownEvent was specifically created to simplify scatter/gather scenarios.
Now, in your case, when the list of objects to be processed is an array, a better way than queuing to the thread pool, is to use Parallel.For from the same library, like so:
Parallel.For(0, arrayStrings.Length - 1 , delegate(int i)
{
DoSomething(arrayStrings(i));
});
Finally, checkout Parallel.ForEach for even higher-level semantics:
Parallel.ForEach<string>(arrayStrings, someString =>
{
DoSomething(someString);
});
Behind the scenes, Parallel For and ForEach queue to a thread pool and wait until all threads are done.
--- EDIT ----
Two more ways are described in this post on Parallels Extensions team blog.
One is to use the new Task object:
Task taskHello = Task.Factory.StartNew(hello);
Task taskWorld = Task.Factory.StartNew(world);
Task.WaitAll(taskHello, taskWorld);
Another one is to do Parallel.Invoke:
Action hello = () => { Console.Write("Hello"); };
Action world = () => { Console.Write("World"); };
Parallel.Invoke(hello, world);
|
|
|
|
7
|
|
|
To begin with, you can use CountdownEvent like so: (to use this in .NET 3.5 you need to download an extra DLL from Microsoft, more details here)
flagFinish = new CountdownEvent(2); <=== INITIALIZING COUNT
... queue processing to the thread pool ...
flagFinish.Wait();
...proceed with the rest of your logic...
...
void DoSomething(string someString){
... do some processing...
flagFinish.Decrement(); <== WORKER THREADS SIGNAL WHEN DONE
}
According to Joe Duffy (the famous multithreading guru from Microsoft whose lecture at PDC 08 I learned this from) this class CountdownEvent was specifically designed created to solve problems like yourssimplify scatter/gather scenarios.
Now, in your case, when the list of objects to be processed is an array, the suggested a better way , instead of than queuing to the thread pool, is to use Parallel.For from the same library, like so:
Parallel.For(0, arrayStrings.Length - 1 , delegate(int i)
{
DoSomething(arrayStrings(i));
});
Finally, checkout Parallel.ForEach for even higher-level semantics:
Parallel.ForEach<string>(arrayStrings, someString =>
{
DoSomething(someString);
});
Behind the scenes, Parallel For and ForEach queue to a thread pool and wait until all threads are done.
|
|
|
|
6
|
|
|
To begin with, you can use CountdownEvent like so: (to use this in .NET 3.5 you need to download an extra DLL, more details here)
using System.Threading; <=== NOTE THIS
flagFinish = new CountdownEvent(2); <=== INITIALIZING COUNT
... queue processing to the thread pool ...
flagFinish.Wait();
...proceed with the rest of your logic...
...
void DoSomething(string someString){
... do some processing...
flagFinish.Decrement(); <== WORKER THREADS SIGNAL WHEN DONE
}
According to Joe Duffy (the famous multithreading guru from Microsoft whose lecture at PDC 08 I learned this from) this class was specifically designed to solve problems like yours.
Now, in your case, when the list of objects to be processed is an array, the suggested way, instead of queuing to the thread pool, is to use Parallel.For from the same library, like so:
Parallel.For(0, arrayStrings.Length - 1 , delegate(int i)
{
DoSomething(arrayStrings(i));
});
Finally, checkout Parallel.ForEach for even higher-level semantics:
Parallel.ForEach<string>(arrayStrings, someString =>
{
DoSomething(someString);
});
|
|
|
|
5
|
|
|
I'd much rather To begin with, you can use CountdownEvent from .NET 4.0 like so: (you can also to use it this in .NET 3.5 if you need to download an extra DLL, more details here) 01.using System;using System.Threading; <=== NOTE THIS03.using FileHelpers;04.using NUnit.Framework;05. 08. [TestFixture]09. public class Multithreading10. {11. private ManualResetEvent flagStart;12. private CountdownEvent flagFinish ;13. private Exception initializationException;14. 15. [Test]16. public void AsyncEngineInitialization()17. {18. flagStart = new ManualResetEvent(false);19. flagFinish = new CountdownEvent(2); <=== INITIALIZING COUNT20. 21. new Thread(InitializeAsyncEngineWhenFlagIsRaised).Start();22. new Thread(InitializeAsyncEngineWhenFlagIsRaised).Start();23. 24.flagStart.Set();25.. queue processing to the thread pool ...26. 27. if (initializationException != null) throw new ApplicationException("Failure during AsyncEngine initialization", initializationException);29. 30..proceed with the rest of your logic...private void InitializeAsyncEngineWhenFlagIsRaised()31. {32. flagStart.WaitOne();33. try34. {35. new FileHelperAsyncEngine<SampleType>();36. }37. catch (Exception e)38. DoSomething(string someString){ 39. initializationException = e;41.. do some processing...42. }43. 44. }Actually Now, in your case, when the list of objects to be processed is an array, the suggested way, instead of queuing to the thread pool, is to use Parallel.For from the same library, like so: 1: Parallel.For(0, 100arrayStrings.Length - 1 , delegate(int i)2: { 3: doWork(i)DoSomething(arrayStrings(i));4: }5: );Finally, checkout Parallel.ForEach for even higher-level semantics.: Parallel.ForEach<string>(arrayStrings, someString => DoSomething(someString);
|
|
|
|
4
|
|
|
I'd much rather use CountdownEvent from .NET 4.0 like so: (you can also use it in 3.5 if you download an extra DLL, more details here)
01.using System;
02.using System.Threading; <=== NOTE THIS
03.using FileHelpers;
04.using NUnit.Framework;
05.
06.namespace FileHelpersTests.Tests.Common
07.{
08. [TestFixture]
09. public class Multithreading
10. {
11. private ManualResetEvent flagStart;
12. private CountdownEvent flagFinish;
13. private Exception initializationException;
14.
15. [Test]
16. public void AsyncEngineInitialization()
17. {
18. flagStart = new ManualResetEvent(false);
19. flagFinish = new CountdownEvent(2); <=== INITIALIZING COUNT
20.
21. new Thread(InitializeAsyncEngineWhenFlagIsRaised).Start();
22. new Thread(InitializeAsyncEngineWhenFlagIsRaised).Start();
23.
24. flagStart.Set();
25. flagFinish.Wait();
26.
27. if (initializationException != null) throw new ApplicationException("Failure during AsyncEngine initialization", initializationException);
28. }
29.
30. private void InitializeAsyncEngineWhenFlagIsRaised()
31. {
32. flagStart.WaitOne();
33. try
34. {
35. new FileHelperAsyncEngine<SampleType>();
36. }
37. catch (Exception e)
38. {
39. initializationException = e;
40. }
41. flagFinish.Decrement(); <== WORKER THREADS SIGNAL WHEN DONE
42. }
43.
44. }
45.}
According to Joe Duffy (the famous multithreading guru from Microsoft whose lecture at PDC 08 I learned this from) this class was specifically designed to solve problems like yours.
Actually in your case, when the list of objects to be processed is an array, the suggested way, instead of queuing to the thread pool, is to use Parallel.For from the same library, like so:
1: Parallel.For(0, 100, delegate(int i)
2: {
3: doWork(i);
4: }
5: );
Finally, checkout Parallel.ForEach for even higher-level semantics.
|
|
|
|
3
|
|
|
I'd much rather use CountdownEvent from .NET 4.0 like so: (you can also use it in 3.5 if you download an extra DLL, more details here)
01.using System;
02.using System.Threading; <=== NOTE THIS
03.using FileHelpers;
04.using NUnit.Framework;
05.
06.namespace FileHelpersTests.Tests.Common
07.{
08. [TestFixture]
09. public class Multithreading
10. {
11. private ManualResetEvent flagStart;
12. private CountdownEvent flagFinish;
13. private Exception initializationException;
14.
15. [Test]
16. public void AsyncEngineInitialization()
17. {
18. flagStart = new ManualResetEvent(false);
19. flagFinish = new CountdownEvent(2); <=== INITIALIZING COUNT
20.
21. new Thread(InitializeAsyncEngineWhenFlagIsRaised).Start();
22. new Thread(InitializeAsyncEngineWhenFlagIsRaised).Start();
23.
24. flagStart.Set();
25. flagFinish.Wait();
26.
27. if (initializationException != null) throw new ApplicationException("Failure during AsyncEngine initialization", initializationException);
28. }
29.
30. private void InitializeAsyncEngineWhenFlagIsRaised()
31. {
32. flagStart.WaitOne();
33. try
34. {
35. new FileHelperAsyncEngine<SampleType>();
36. }
37. catch (Exception e)
38. {
39. initializationException = e;
40. }
41. flagFinish.Decrement(); <== WORKER THREADS SIGNAL WHEN DONE
42. }
43.
44. }
45.}
According to Joe Duffy (the famous multithreading guru from Microsoft whose lecture at PDC 08 I learned this from) this class was specifically designed to solve problems like yours.
|
|
|
|
2
|
|
|
I'd much rather use CountdownEvent from .NET 4.0 like so: (you can also use it in 3.5 if you download an extra DLL, more details here)
01.using System;
02.using System.Threading;
03.using FileHelpers;
04.using NUnit.Framework;
05.
06.namespace FileHelpersTests.Tests.Common
07.{
08. [TestFixture]
09. public class Multithreading
10. {
11. private ManualResetEvent flagStart;
12. private CountdownEvent flagFinish;
13. private Exception initializationException;
14.
15. [Test]
16. public void AsyncEngineInitialization()
17. {
18. flagStart = new ManualResetEvent(false);
19. flagFinish = new CountdownEvent(2);
20.
21. new Thread(InitializeAsyncEngineWhenFlagIsRaised).Start();
22. new Thread(InitializeAsyncEngineWhenFlagIsRaised).Start();
23.
24. flagStart.Set();
25. flagFinish.Wait();
26.
27. if (initializationException != null) throw new ApplicationException("Failure during AsyncEngine initialization", initializationException);
28. }
29.
30. private void InitializeAsyncEngineWhenFlagIsRaised()
31. {
32. flagStart.WaitOne();
33. try
34. {
35. new FileHelperAsyncEngine<SampleType>();
36. }
37. catch (Exception e)
38. {
39. initializationException = e;
40. }
41. flagFinish.Decrement();
42. }
43.
44. }
45.}
|
|
|
|
1
|
|
|
I'd much rather use CountdownEvent from .NET 4.0 like so: (more details here)
01.using System;
02.using System.Threading;
03.using FileHelpers;
04.using NUnit.Framework;
05.
06.namespace FileHelpersTests.Tests.Common
07.{
08. [TestFixture]
09. public class Multithreading
10. {
11. private ManualResetEvent flagStart;
12. private CountdownEvent flagFinish;
13. private Exception initializationException;
14.
15. [Test]
16. public void AsyncEngineInitialization()
17. {
18. flagStart = new ManualResetEvent(false);
19. flagFinish = new CountdownEvent(2);
20.
21. new Thread(InitializeAsyncEngineWhenFlagIsRaised).Start();
22. new Thread(InitializeAsyncEngineWhenFlagIsRaised).Start();
23.
24. flagStart.Set();
25. flagFinish.Wait();
26.
27. if (initializationException != null) throw new ApplicationException("Failure during AsyncEngine initialization", initializationException);
28. }
29.
30. private void InitializeAsyncEngineWhenFlagIsRaised()
31. {
32. flagStart.WaitOne();
33. try
34. {
35. new FileHelperAsyncEngine<SampleType>();
36. }
37. catch (Exception e)
38. {
39. initializationException = e;
40. }
41. flagFinish.Decrement();
42. }
43.
44. }
45.}
|
|
|