Wait for pooled threads to complete. - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T00:05:59Zhttp://stackoverflow.com/feeds/question/540078http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/540078/wait-for-pooled-threads-to-complete3Wait for pooled threads to complete.Kivin2009-02-12T04:54:30Z2009-09-30T21:29:42Z
<p>I'm sorry for a redundant question. However, I've found many solutions to my problem but none of them are very well explained. I'm hoping that it will be made clear, here.</p>
<p>My C# application's main thread spawns 1..n background workers using the ThreadPool. I wish for the original thread to lock until all of the workers have completed. I have researched the ManualResetEvent in particular but I'm not clear on it's use.</p>
<p>In pseudo:</p>
<pre><code>foreach( var o in collection )
{
queue new worker(o);
}
while( workers not completed ) { continue; }
</code></pre>
<p>If necessary, I will know the number of workers that are about to be queued before hand.</p>
http://stackoverflow.com/questions/540078/wait-for-pooled-threads-to-complete/540110#5401100Answer by routeNpingme for Wait for pooled threads to complete.routeNpingme2009-02-12T05:06:53Z2009-02-12T05:06:53Z<p>Why don't you create a static/shared integer that all the threads can see... i.e.</p>
<pre><code>static int numThreads = 0;
</code></pre>
<p>When you spawn your threads, the first thing they should do is:</p>
<pre><code>numThreads += 1;
</code></pre>
<p>The last thing they should do is:</p>
<pre><code>numThreads -= 1;
</code></pre>
<p>And while this is happening, your main thread can simply wait for numThreads to go back to 0. This will not only give you your logic but will provide you an easy number of currently active threads.</p>
http://stackoverflow.com/questions/540078/wait-for-pooled-threads-to-complete/540124#5401245Answer by Marc Gravell for Wait for pooled threads to complete.Marc Gravell2009-02-12T05:10:01Z2009-07-15T17:12:06Z<p>First, how long do the workers execute? pool threads should generally be used for short-lived tasks - if they are going to run for a while, consider manual threads.</p>
<p>Re the problem; do you actually need to block the main thread? Can you use a callback instead? If so, something like:</p>
<pre><code>int running = 1; // start at 1 to prevent multiple callbacks if
// tasks finish faster than they are started
Action endOfThread = delegate {
if(Interlocked.Decrement(ref running) == 0) {
// ****run callback method****
}
};
foreach(var o in collection)
{
var tmp = o; // avoid "capture" issue
Interlocked.Increment(ref running);
ThreadPool.QueueUserWorkItem(delegate {
DoSomeWork(tmp); // [A] should handle exceptions internally
endOfThread();
});
}
endOfThread(); // opposite of "start at 1"
</code></pre>
<p>This is a fairly lightweight (no OS primitives) way of tracking the workers.</p>
<p>If you <strong>need</strong> to block, you can do the same using a <code>Monitor</code> (again, avoiding an OS object):</p>
<pre><code> object syncLock = new object();
int running = 1;
Action endOfThread = delegate {
if (Interlocked.Decrement(ref running) == 0) {
lock (syncLock) {
Monitor.Pulse(syncLock);
}
}
};
lock (syncLock) {
foreach (var o in collection) {
var tmp = o; // avoid "capture" issue
ThreadPool.QueueUserWorkItem(delegate
{
DoSomeWork(tmp); // [A] should handle exceptions internally
endOfThread();
});
}
endOfThread();
Monitor.Wait(syncLock);
}
Console.WriteLine("all done");
</code></pre>
http://stackoverflow.com/questions/540078/wait-for-pooled-threads-to-complete/540143#5401434Answer by JaredPar for Wait for pooled threads to complete.JaredPar2009-02-12T05:19:42Z2009-02-12T05:19:42Z<p>Try this. The function takes in a list of Action delegates. It will add a ThreadPool worker entry for each item in the list. It will wait for every action to complete before returning.</p>
<pre><code>public static void SpawnAndWait(IEnumerable<Action> actions)
{
var list = actions.ToList();
var handles = new ManualResetEvent[actions.Count()];
for (var i = 0; i < list.Count; i++)
{
handles[i] = new ManualResetEvent(false);
var currentAction = list[i];
var currentHandle = handles[i];
Action wrappedAction = () => { try { currentAction(); } finally { currentHandle.Set(); } };
ThreadPool.QueueUserWorkItem(x => wrappedAction());
}
WaitHandle.WaitAll(handles);
}
</code></pre>
http://stackoverflow.com/questions/540078/wait-for-pooled-threads-to-complete/540148#5401481Answer by James for Wait for pooled threads to complete.James2009-02-12T05:21:59Z2009-02-12T05:43:34Z<p>I think you were on the right track with the ManualResetEvent. This <a href="http://msdn.microsoft.com/en-us/library/system.threading.manualresetevent.aspx" rel="nofollow">link</a> has a code sample that closely matches what your trying to do. The key is to use the WaitHandle.WaitAll and pass an array of wait events. Each thread needs to set one of these wait events.</p>
<pre><code> // Simultaneously calculate the terms.
ThreadPool.QueueUserWorkItem(
new WaitCallback(CalculateBase));
ThreadPool.QueueUserWorkItem(
new WaitCallback(CalculateFirstTerm));
ThreadPool.QueueUserWorkItem(
new WaitCallback(CalculateSecondTerm));
ThreadPool.QueueUserWorkItem(
new WaitCallback(CalculateThirdTerm));
// Wait for all of the terms to be calculated.
WaitHandle.WaitAll(autoEvents);
// Reset the wait handle for the next calculation.
manualEvent.Reset();
</code></pre>
<p>Edit:</p>
<p>Make sure that in your worker thread code path you set the event (i.e. autoEvents[1].Set();). Once they are all signaled the waitAll will return.</p>
<pre><code>void CalculateSecondTerm(object stateInfo)
{
double preCalc = randomGenerator.NextDouble();
manualEvent.WaitOne();
secondTerm = preCalc * baseNumber *
randomGenerator.NextDouble();
autoEvents[1].Set();
}
</code></pre>
http://stackoverflow.com/questions/540078/wait-for-pooled-threads-to-complete/540186#5401860Answer by Kivin for Wait for pooled threads to complete.Kivin2009-02-12T05:35:28Z2009-02-12T05:35:28Z<p>Based on material available in several of the above posts, I'm toying with the following solution. I'm still not sure I've got the synchronization object used properly.</p>
<pre><code>ManualResetEvent[] locks = new ManualResetEvent[Tasks.Count];
for(int i = 0; i < locks.length; i++)
locks[i] = new ManualResetEvent(false);
int lockIdx = 0;
foreach( var task in Tasks )
{
ThreadPool.QueueUserWorkItem(delegate(object state) {
// do stuff
(state as ManualResetEvent).Set();
}, locks[lockIdx++]);
}
WaitHandle.WaitAll(locks);
</code></pre>
<p>I'd be interested to know if I've got the reset events configured properly and if there's any serious flaws in this solution.</p>
http://stackoverflow.com/questions/540078/wait-for-pooled-threads-to-complete/540380#5403805Answer by Marc Gravell for Wait for pooled threads to complete.Marc Gravell2009-02-12T07:45:14Z2009-02-12T07:45:14Z<p>Here's a different approach - encapsulation; so your code could be as simple as:</p>
<pre><code> Forker p = new Forker();
foreach (var obj in collection)
{
var tmp = obj;
p.Fork(delegate { DoSomeWork(tmp); });
}
p.Join();
</code></pre>
<p>Where the <code>Forker</code> class is given below (I got bored on the train ;-p)... again, this avoids OS objects, but wraps things up quite neatly (IMO):</p>
<pre><code>using System;
using System.Threading;
/// <summary>Event arguments representing the completion of a parallel action.</summary>
public class ParallelEventArgs : EventArgs
{
private readonly object state;
private readonly Exception exception;
internal ParallelEventArgs(object state, Exception exception)
{
this.state = state;
this.exception = exception;
}
/// <summary>The opaque state object that identifies the action (null otherwise).</summary>
public object State { get { return state; } }
/// <summary>The exception thrown by the parallel action, or null if it completed without exception.</summary>
public Exception Exception { get { return exception; } }
}
/// <summary>Provides a caller-friendly wrapper around parallel actions.</summary>
public sealed class Forker
{
int running;
private readonly object joinLock = new object(), eventLock = new object();
/// <summary>Raised when all operations have completed.</summary>
public event EventHandler AllComplete
{
add { lock (eventLock) { allComplete += value; } }
remove { lock (eventLock) { allComplete -= value; } }
}
private EventHandler allComplete;
/// <summary>Raised when each operation completes.</summary>
public event EventHandler<ParallelEventArgs> ItemComplete
{
add { lock (eventLock) { itemComplete += value; } }
remove { lock (eventLock) { itemComplete -= value; } }
}
private EventHandler<ParallelEventArgs> itemComplete;
private void OnItemComplete(object state, Exception exception)
{
EventHandler<ParallelEventArgs> itemHandler = itemComplete; // don't need to lock
if (itemHandler != null) itemHandler(this, new ParallelEventArgs(state, exception));
if (Interlocked.Decrement(ref running) == 0)
{
EventHandler allHandler = allComplete; // don't need to lock
if (allHandler != null) allHandler(this, EventArgs.Empty);
lock (joinLock)
{
Monitor.PulseAll(joinLock);
}
}
}
/// <summary>Adds a callback to invoke when each operation completes.</summary>
/// <returns>Current instance (for fluent API).</returns>
public Forker OnItemComplete(EventHandler<ParallelEventArgs> handler)
{
if (handler == null) throw new ArgumentNullException("handler");
ItemComplete += handler;
return this;
}
/// <summary>Adds a callback to invoke when all operations are complete.</summary>
/// <returns>Current instance (for fluent API).</returns>
public Forker OnAllComplete(EventHandler handler)
{
if (handler == null) throw new ArgumentNullException("handler");
AllComplete += handler;
return this;
}
/// <summary>Waits for all operations to complete.</summary>
public void Join()
{
Join(-1);
}
/// <summary>Waits (with timeout) for all operations to complete.</summary>
/// <returns>Whether all operations had completed before the timeout.</returns>
public bool Join(int millisecondsTimeout)
{
lock (joinLock)
{
if (CountRunning() == 0) return true;
Thread.SpinWait(1); // try our luck...
return (CountRunning() == 0) ||
Monitor.Wait(joinLock, millisecondsTimeout);
}
}
/// <summary>Indicates the number of incomplete operations.</summary>
/// <returns>The number of incomplete operations.</returns>
public int CountRunning()
{
return Interlocked.CompareExchange(ref running, 0, 0);
}
/// <summary>Enqueues an operation.</summary>
/// <param name="action">The operation to perform.</param>
/// <returns>The current instance (for fluent API).</returns>
public Forker Fork(ThreadStart action) { return Fork(action, null); }
/// <summary>Enqueues an operation.</summary>
/// <param name="action">The operation to perform.</param>
/// <param name="state">An opaque object, allowing the caller to identify operations.</param>
/// <returns>The current instance (for fluent API).</returns>
public Forker Fork(ThreadStart action, object state)
{
if (action == null) throw new ArgumentNullException("action");
Interlocked.Increment(ref running);
ThreadPool.QueueUserWorkItem(delegate
{
Exception exception = null;
try { action(); }
catch (Exception ex) { exception = ex;}
OnItemComplete(state, exception);
});
return this;
}
}
</code></pre>
http://stackoverflow.com/questions/540078/wait-for-pooled-threads-to-complete/852412#8524121Answer by Gordon Carpenter-Thompson for Wait for pooled threads to complete.Gordon Carpenter-Thompson2009-05-12T12:08:27Z2009-05-12T12:08:27Z<p>I've found a good solution here :</p>
<p><a href="http://msdn.microsoft.com/en-us/magazine/cc163914.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/magazine/cc163914.aspx</a></p>
<p>May come in handy for others with the same issue</p>
http://stackoverflow.com/questions/540078/wait-for-pooled-threads-to-complete/1131717#11317170Answer by Joseph Kingry for Wait for pooled threads to complete.Joseph Kingry2009-07-15T14:22:16Z2009-07-15T14:22:16Z<p>Using .NET 4.0 <a href="http://msdn.microsoft.com/en-us/library/system.threading.barrier%28VS.100%29.aspx" rel="nofollow">Barrie</a>r class:</p>
<pre><code> Barrier sync = new Barrier(1);
foreach(var o in collection)
{
WaitCallback worker = (state) =>
{
// do work
sync.SignalAndWait();
};
sync.AddParticipant();
ThreadPool.QueueUserWorkItem(worker, o);
}
sync.SignalAndWait();
</code></pre>
http://stackoverflow.com/questions/540078/wait-for-pooled-threads-to-complete/1131738#11317381Answer by zvolkov for Wait for pooled threads to complete.zvolkov2009-07-15T14:27:00Z2009-07-15T14:27:00Z<p>Check out my blog post for comparison of various techniques:</p>
<p><a href="http://zvolkov.com/blog/post/2009/07/10/Better-ways-to-wait-for-queued-threads-to-complete.aspx" rel="nofollow">http://zvolkov.com/blog/post/2009/07/10/Better-ways-to-wait-for-queued-threads-to-complete.aspx</a></p>
http://stackoverflow.com/questions/540078/wait-for-pooled-threads-to-complete/1500759#15007591Answer by Brad Culberson for Wait for pooled threads to complete.Brad Culberson2009-09-30T21:29:42Z2009-09-30T21:29:42Z<p>I have been using the new Parallel task library in CTP <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=348F73FD-593D-4B3C-B055-694C50D2B0F3&displaylang=en" rel="nofollow">here</a>:</p>
<pre><code> Parallel.ForEach(collection, o =>
{
DoSomeWork(o);
});
</code></pre>